进度条未显示在 CardView 内部

Progress Bar not showing in inside CardView

我有一个 viewpager,用于显示优惠卡片,现在,出于某种原因,当我单击每张卡片时,它没有显示我设置的进度条

<com.google.android.material.card.MaterialCardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:cardCornerRadius="8dp">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="200dp">

        <ProgressBar
            android:id="@+id/offer_progress"
            android:layout_width="45dp"
            android:layout_height="45dp"
            android:indeterminate="true"
            android:visibility="gone"
            android:layout_centerHorizontal="true"
            android:layout_centerInParent="true"/>

        <ImageView
            android:id="@+id/sliderImage"
            android:layout_width="match_parent"
            android:layout_height="200dp"/>

    </RelativeLayout>

</com.google.android.material.card.MaterialCardView>

因此,在我的 viewpager 片段中,我点击了图片,它应该会显示进度

sliderImage.setOnClickListener {
  offer_progress.visibility = View.VISIBLE
}

但是不显示进度条

有线索吗?

尝试将进度条放在 ImageView 下方。

<com.google.android.material.card.MaterialCardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:cardCornerRadius="8dp">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="200dp">



        <ImageView
            android:id="@+id/sliderImage"
            android:layout_width="match_parent"
            android:layout_height="200dp"/>

  <ProgressBar
            android:id="@+id/offer_progress"
            android:layout_width="45dp"
            android:layout_height="45dp"
            android:indeterminate="true"
            android:visibility="gone"
            android:layout_centerHorizontal="true"
            android:layout_centerInParent="true"/>

    </RelativeLayout>

</com.google.android.material.card.MaterialCardView>