2つのImageViewをRelativeLayout内に垂直に表示しようとしましたが、各imageViewの重量は50%でしたが、ディスプレイにはImageViewが1つしか表示されません。layout_weightがRelativeLayout内で正しく機能しないのはなぜですか?
コード:
<RelativeLayout
android:id="@+id/layout_board"
android:layout_width="match_parent"
android:layout_height="450dp"
android:background="@color/colorPrimaryDark"
android:weightSum="2">
<ImageView android:id="@+id/imageView11"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/colorAccent"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>
<ImageView android:id="@+id/imageView21"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/colorAccent"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>
</RelativeLayout>
助けてください!
'layout_weight'は' LinearLayout'でのみ機能します。 –