如何将进度条放在android中的textview或imageview等布局元素上

时间:2017-06-08 06:10:15

标签: android android-recyclerview progress-bar android-cardview

我正在使用Retrofit从服务器加载一个列表。 任何人都可以帮我如何在RecyclerView的CardView的每个元素上加载ProgressBar吗?  下面我发布了我想要做的图像。 Example

编辑:

 <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>

1 个答案:

答案 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>