NestedScrollView内的RecyclerView-不滚动到底部

时间:2018-01-31 08:34:39

标签: android android-recyclerview android-nestedscrollview

我对RecyclerView有疑问。每次添加新文本时,它都会冻结,并且不会滚动到底部以显示新消息。 以下是我的.xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  ,xmlns:app="http://schemas.android.com/apk/res-auto"
  android:background="?attr/colorPrimary">

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <Button
        android:id="@+id/exitChat"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="top"
        android:text="@string/exitChat"
        android:textAllCaps="false" />

    <RadioButton
        android:id="@+id/statusBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:backgroundTint="@color/colorPrimary"
        android:checked="true"
        android:clickable="false"
        android:text="@string/user" />


    <android.support.v4.widget.NestedScrollView
        android:id="@+id/scroll"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:layout_above="@+id/chatBox">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/reyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="?attr/colorPrimary">

        </android.support.v7.widget.RecyclerView>

    </android.support.v4.widget.NestedScrollView>

</LinearLayout>

   .....
</RelativeLayout>

我做错了什么?这与NestedScrollView

有关

0 个答案:

没有答案