我正在使用Retrofit从服务器加载一个列表。 任何人都可以帮我如何在RecyclerView的CardView的每个元素上加载ProgressBar吗? 下面我发布了我想要做的图像。
编辑:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/viewMargin"
android:id="@+id/rvRecyclerViewCustom"
>
</android.support.v7.widget.RecyclerView>
答案 0 :(得分:1)
你可以试试这种方式
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
</FrameLayout>