这将是更长的帖子: 因此,我有一个片段“ Feed”,其中所有帖子均与FireStoreRecyclerAdapter一起列出,并且工作正常。每个帖子都有一个评论按钮,当我单击它时,它会启动一个名为“ onClickPostActivity”的新活动,在该活动中,帖子将再次加载,但可以在更大的视图中显示,并且可以通过屏幕底部的评论栏对其进行评论。然后,应在帖子下方列出所有评论,如果用户发布了某些内容,则应立即更新并在帖子下方显示新评论。一切正常,唯一的问题是注释的加载
这是问题所在
第一张图片显示的是加载clickPostactivity时的图片,由于某些原因您看不到评论
因此,在按下键盘后,它显然会显示帖子?
再次隐藏键盘后,它会从一开始就显示注释
当我使用后退按钮离开帖子并再次转到帖子时,过程会重复吗?
以下是clickPostActivity的相关代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate( savedInstanceState );
setContentView( R.layout.activity_click_post );
setUpRecyclerView();
}
private void setUpRecyclerView() {
Query query = commentsRef.orderBy("time", Query.Direction.DESCENDING);
FirestoreRecyclerOptions<Comments> options = new FirestoreRecyclerOptions.Builder<Comments>().setQuery(query, Comments.class).build();
adapter = new CommentsAdapter(options);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(clickPostActivity.this));
recyclerView.setAdapter(adapter);
}
@Override
protected void onStart() {
super.onStart();
adapter.startListening();
}
@Override
protected void onStop() {
super.onStop();
adapter.stopListening();
}
如果出于某种奇怪的原因,这是xml布局文件的错误:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryDark"
tools:context=".clickPostActivity">
<include
android:id="@+id/toolbar"
layout="@menu/toolbar"/>
<include
android:id="@+id/commentbar"
layout="@menu/commentbar" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginTop="50dp">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/og_profileImage"
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/ic_action_profile"
android:scaleType="centerCrop"
android:layout_marginLeft="4dp">
</de.hdodenhof.circleimageview.CircleImageView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/og_userName"
android:layout_height="wrap_content"
android:ellipsize="end"
android:fontFamily="@font/abel"
android:maxLines="1"
android:text="username"
android:textAlignment="textStart"
android:textColor="@android:color/white"
android:textSize="16dp"
android:textStyle="bold"
android:layout_width="330dp" />
<ImageButton
android:id="@+id/og_postOptions"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/ic_action_options"></ImageButton>
</LinearLayout>
<TextView
android:id="@+id/og_uploadTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="posted at 23:11 on Semptember 11th 2020"
android:textSize="13dp"
android:textColor="@android:color/white"></TextView>
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/og_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Post description"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:padding="3dp"
android:textSize="14dp"
android:textColor="@android:color/white" />
<ImageView
android:id="@+id/og_image"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_margin="3dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/og_commentList"
android:layout_width="match_parent"
android:layout_height="wrap_content"></androidx.recyclerview.widget.RecyclerView>
</LinearLayout>
<LinearLayout
android:id="@+id/comment_delete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="60dp"
android:background="#9A39B54A"
android:orientation="vertical">
<TextView
android:id="@+id/post_delete_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/abel"
android:text="Delete Post"
android:textColor="@android:color/white"
android:textSize="20dp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/comment_delete_confirm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:fontFamily="@font/abel"
android:text="Confirm"
android:textColor="@android:color/white" />
<Button
android:id="@+id/comment_delete_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:fontFamily="@font/abel"
android:text="Cancel"
android:textColor="@android:color/white" />
</LinearLayout>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
答案 0 :(得分:1)
我遇到了同样的问题并通过删除这部分(它在您的 clickPostActivity 中)来解决它:
recyclerView.setHasFixedSize(true);