私は3つのimageviewを置くときにのみ、これらの画像を表示するために、nestedscrollviewの中にあるLinear Layoutを使用しています。私は3つ以上のImageViewのを置くならば、リニアレイアウト内に複数の画像を表示する方法は?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1b" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1c" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1j" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1f" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1g" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1h" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="180dp"
android:scaleType="centerCrop"
android:src="@drawable/alaep1m" />
</LinearLayout>
私のコードの何が問題..ですそれがすべてでは動作しないとアプリがrespond.Hereはscreenshot.xmlファイルの私のxmlレイアウトではありませんか?
ご返信ありがとうございますが、私のコードを使用してrecyleviewの例を教えていただけますか? –
私はこれが本当にこの例で文書化されていると思います。 TextViewをImageViewに変更する必要があります。 – Konrad