「ImageView」に関する質問がいくつかありますが、が必要FrameLayout
です。
FrameLayoutがあります。これにはwidth:height
=が必要2:1
で、幅はfill_parent
です。フレームレイアウト内には多くの画像ビューがあり、それらwidth=fill_parent
を設定するだけheight=fill_parent
です。
これを行う方法が見つかりません。助けてください。
私のxmlコードは次のとおりです。
<FrameLayout
android:id="@+id/cardView"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_centerInParent="true">
<ImageView
android:id="@+id/frameView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/card_style1"
/>
</FrameLayout>