我的RecyclerView堆叠到最后,但没有显示最后的两个项目

时间:2019-09-05 18:48:02

标签: java android android-recyclerview bottom-sheet

我在底部使用了一个recyclerview,它一直堆叠到最后,但这并没有显示最后一个项目,我必须向下滚动才能看到所有项目。

有人知道吗?

<LinearLayout ...
     android:id="@+id/comment_sheet"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     app:behavior_hideable="true"
     app:behavior_peekHeight="0dp"
     android:orientation="vertical"
     app:layout_behavior="@string/bottom_sheet_behavior">

        <androidx.recyclerview.widget.RecyclerView
               android:id="@+id/article_comments"
               android:layout_width="match_parent"
               android:layout_height="0dp"
               android:layout_weight="1"
  app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
               android:background="@color/indigo_50" />



        <com.google.android.material.textfield.TextInputEditText
               android:id="@+id/input_comment"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:minHeight="50sp"
               android:maxHeight="100sp"
               android:gravity="center_vertical"
               android:hint="@string/enterYourComment"
               android:textSize="15sp" />
</LinearLayout>

我也使用

Lm.stackfromend(true);

0 个答案:

没有答案