我想放置一个可滚动的Recycler View,但在Recycler View的末尾,我想在滚动的底部显示其他元素。
我该怎么做?
有我的代码:
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView_card_elements"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="LOG OUT"
android:layout_margin="10dp"
android:textStyle="bold"
android:textSize="18sp"/>
</RelativeLayout>
答案 0 :(得分:0)
也许你需要这样的东西:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView_card_elements"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="LOG OUT"
android:layout_margin="10dp"
android:textStyle="bold"
android:textSize="18sp"/>
</RelativeLayout>