我试图展示所有的孩子"姓名"位于My Database tree。我使用@Alex Mamo Unable to get All child data in Firebase Database using a Map?给出的答案 我想将所有数据显示到recyclerView中。但出于某些原因而不是在我的屏幕电话上获得所有名字(伊娃,史密斯,公主),我只能看到一个"公主"在我的recyclerView布局(公主,公主,公主)中显示3次。在玩了Alex的答案之后,我发现这在我的案例中完美无缺,
DatabaseReference yourRef = FirebaseDatabase.getInstance().getReference().child("Users");
ValueEventListener eventListener = new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot dataSnapshot1 : dataSnapshot.getChildren()) {
String name = dataSnapshot1.child("name").getValue().toString();
displayName.setText(name);// display on the screen
Toast.makeText(context, name, Toast.LENGTH_LONG).show();
}
}
@Override
public void onCancelled(DatabaseError databaseError) {}
};
yourRef.addListenerForSingleValueEvent(eventListener);
}
因为这个答案在Toast中正确地给了我所有名字,但在我的屏幕上没有,所以我认为我的FirebaseRecyclerAdpater出了问题。到目前为止我的代码在这里,
FirebaseRecyclerAdapter<UsersPostClass, UsersViewHolder> userList = new FirebaseRecyclerAdapter<UsersPostClass, UsersViewHolder>(
UsersPostClass.class,
R.layout.custom,
UsersViewHolder.class,
mDatabaseRef
) {
@Override
protected void populateViewHolder( UsersViewHolder viewHolder, UsersPostClass model, int position) {
viewHolder.setUsernameList(getApplicationContext());
}
};
mRecyclerView.setAdapter(userList);
}
private static class UsersViewHolder extends RecyclerView.ViewHolder {
View mView;
public UsersViewHolder(View itemView) {
super(itemView);
mView = itemView;
}
public void setUsernameList(final Context context) {
final TextView displayName = (TextView) mView.findViewById(R.id.listViewUsername);
DatabaseReference yourRef = FirebaseDatabase.getInstance().getReference().child("Users");
ValueEventListener eventListener = new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot dataSnapshot1 : dataSnapshot.getChildren()) {
String name = dataSnapshot1.child("name").getValue().toString();
displayName.setText(name);
Toast.makeText(context, name, Toast.LENGTH_LONG).show();
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
};
yourRef.addListenerForSingleValueEvent(eventListener);
}
}
欢迎任何帮助或提示。 编辑:添加我的布局 这是我的RecyclerView布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
android:text="My Players List"
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
android:textSize="20sp"
android:layout_marginBottom="10dp"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
最后我的自定义布局,我想显示所有名称
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="@android:color/transparent"
card_view:cardElevation="0dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp">
<TextView
android:id="@+id/listViewUsername"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:gravity="center_vertical"
android:text="Username"
android:textColor="#aaa"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
只是想知道我在说什么这是我得到的(公主,公主,公主)我应该得到的截图(伊娃,史密斯,公主)。 My ScreenShot如果你向下看,你可以看到Toast正在回归&#34; Eva&#34;和其他2个名字正确但不在屏幕上。
答案 0 :(得分:0)
displayName.setText(name);// display on the screen
你把它放在一个循环中,其中displayName
只是一个 singluar UI元素。换句话说,您始终只能看到循环中的最后一个名字。
如果您注意到,您的关联帖子没有任何循环
您需要填充一些ArrayList
List<String> names = new ArrayList<>();
for (DataSnapshot dataSnapshot1 : dataSnapshot.getChildren()) {
String name = dataSnapshot1.child("name").getValue().toString();
names.add(name);
}
displayName.setText(names.toString());
Toast.makeText(context, names.toString(), Toast.LENGTH_LONG).show();
您可以在RecyclerView中使用该列表,而不是