0

Retrofitを使用してサーバーからリストをロードしています。 誰でも、RecyclerViewのCardViewの各要素でProgressBarをロードする方法を教えてもらえますか? 以下私は自分がしたいことのイメージを掲示しています。 Exampleandroidのtextviewやimageviewのようなレイアウト要素に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

ポストあなたの 'RecyclerView'項目のレイアウトXML。 – earthw0rmjim

+1

簡単な方法はありません。 'ImageView'と' ProgressBar'を 'FrameLayout'で囲みます。次に、画像が読み込まれたら、 'ProgressBar'を隠します。ほとんどの画像ローディングライブラリはこれを行う方法を提供します。 – Ali

+0

@AliとTextViewについて教えてください。 – Sushrita

答えて

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

TextViewでの設定方法は? – Sushrita

+0

@SushritaはImageViewをTextViewに変更します –

関連する問題