"在我的应用程序中,我允许使用" ListView
"添加注释,并使用" FirebaseListAdapter
",它有效,但它仅显示1个项目,我不知道是否显示在" Java code
"或" xml code
"中的问题,我在下面预览了相关的codes
,提示:此code
在fragment
内部,我在其他方面使用了" FireBaseRecyclerAdapter
",但是目前我需要使用Listview
的问题,而我需要使用它。"
{ DatabaseReference commentsdb = mydatabase.getReference().child("comments");
Query commentsquery = commentsdb.child(storyNAME).orderByChild("currentstoryname").equalTo(storyNAME).limitToFirst(10);
FirebaseListOptions<comments> options = new FirebaseListOptions.Builder<comments>()
.setQuery(commentsquery, comments.class)
.setLayout(R.layout.comments)
.setLifecycleOwner(this)
.build();
fbla= new FirebaseListAdapter<comments>(options) {
@Override
protected void populateView(View v, comments model, int position) {
((TextView)v.findViewById(id.commentername)).setText(model.getUserName1());
((TextView)v.findViewById(id.commentstxt1)).setText(model.getUsercomment());
comlist.setAdapter(fbla);
fbla.startListening();
}
{
这是我的.xml文件:
<LinearLayout
android:id="@+id/commentsview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="invisible"
><ImageButton
android:background="@drawable/ic_clear_24dp"
android:id="@+id/cmtexitbtn"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="right"
android:layout_marginRight="10dp"
/>
<ListView
android:id="@+id/commentslist"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/comments"
android:layout_marginBottom="5dp"/>
<!--</LinearLayout>-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"><ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:cropToPadding="true"
android:id="@+id/comerimg"
android:background="@drawable/imgstyle"
android:clickable="false"
/><EditText
android:hint="type your comment"
android:layout_weight="1"
android:id="@+id/usernewcomment"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_margin="5dp"
android:background="@drawable/normaledittextsty" />
<Button
android:defaultFocusHighlightEnabled="true"
android:id="@+id/sendcombtn"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@drawable/ic_send_24dp"/>
</LinearLayout>
}
根据最新评论和编辑的帖子,由于使用以下代码,该问题正在发生:
android:visibility="invisible"
始终设置为invisible
。通过将可见性设置为visible
并仅将视图添加到必要的视图来解决问题。