我刚遇到一个奇怪的问题。我尝试在RecyclerView
的底部添加保证金,但如果我这样做,RecyclerView
中的项目就会搞乱(按错误的顺序)。
这是我的布局:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtEmptyAdapter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_centerHorizontal="true"
android:layout_marginTop="80dp"
android:textSize="15sp"
android:text="@string/myString" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rvContainer"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/frag2recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginEnd="2dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginStart="2dp"
android:visibility="visible"
android:layout_marginBottom="100dp"
>
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
我尝试将android:layout_marginBottom="100dp"
添加到rvContainer
和frag2recycler
,两者都给了我同样的问题。
当我删除保证金时,问题不会出现。
有人知道为什么会这样吗?
答案 0 :(得分:0)
试试这个
<android.support.v7.widget.RecyclerView
android:id="@+id/frag2recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginEnd="2dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:clipToPadding="false"
android:layout_marginStart="2dp"
android:visibility="visible"
android:paddingBottom="100dp"
>
希望这会有所帮助