私は、画面の上部にボタンを置いて、その下に(すべての画面サイズ)画面を埋める必要のあるImageViewを入れようとしています。 RelativeLayoutではやりにくいようですが、ConstraintLayoutではそれを成功させることができません。ConstraintLayoutで2つのビューを画面に塗りつぶす方法は?
Here is an example of what it's look like in RelativeLayout:
とXMLコード:あなたの助けのための
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Download Image"
android:id="@+id/button"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:onClick="downloadImage" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/imageView"
android:layout_below="@+id/button"
android:layout_alignParentStart="true" />
おかげで、 シェイ。
画像を背景とし、フォアグラウンドのボタンにしますか? –