0
我想在加載數據時在recyclerview的中心添加帶有一些文本的旋轉徽標。我如何設置物品高度等於recyclerView高度,如fill_parent?具有相同高度的RecyclerView子代
我想在加載數據時在recyclerview的中心添加帶有一些文本的旋轉徽標。我如何設置物品高度等於recyclerView高度,如fill_parent?具有相同高度的RecyclerView子代
試着這麼做:
<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
的知名度。
好的,會這樣做的。想到一個適配器的方式來做到這一點,雖然。 –