我在RecyclerView
下有ProgressBar
和RelativeLayout
。 ProgressBar
居中显示,直到数据加载到RecyclerView
中为止。我想在ViewPager
上方和下方实现RecyclerView
,以便可以轻松滚动整个视图。
这是我到目前为止所做的:
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progress2"
android:layout_centerInParent="true"/>
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/refresh">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/recycle"/>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
请让我知道如何进行所需的布局。任何帮助将不胜感激。
谢谢
答案 0 :(得分:0)
尝试更改layout_width
和layout_height
,如下所示:
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progress2"
android:layout_centerInParent="true"/>
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/refresh">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:id="@+id/recycle"/>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>