RecyclerView孩子具有相同的高度

时间:2015-11-30 18:51:22

标签: android android-recyclerview

我想在我的数据加载过程中在recyclerview的中心添加带有一些文字的旋转徽标。如何设置项目高度等于recyclerView高度,如fill_parent?

1 个答案:

答案 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的可见性。