我想在我的数据加载过程中在recyclerview的中心添加带有一些文字的旋转徽标。如何设置项目高度等于recyclerView高度,如fill_parent?
答案 0 :(得分:1)
尝试类似:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RecyclerView
... />
<!-- This is the view you will use to show the loading message -->
<View
android:id="@+id/loading_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
.... />
然后相应地切换loading_view
的可见性。