LinearLayout
s に変換したい4 つの s がありRelativeLayout
ます。ここでmy xml
here を使用すると、好みの形式として次のようになります。
- 画像ボタン
- 画像ボタン
- テキストビュー
- ボタン
常に一番上にRelativeLayout
1 番目を表示し、常に一番下にを表示し、2 番目と通常の間に 2 番目を最初の下に表示するように変更するにはどうすればよいですか?ImageButton
Button
ImageButton
ImageButton
TextView
ImageButton
Button
ありがとう!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:gravity="center">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/image_view" />
<TextView
android:text="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/message" />
<Button
android:layout_gravity="center_horizontal"
android:layout_width="fill_parent"
android:textStyle="bold"
android:id="@+id/action_button"
android:selectAllOnFocus="false"
android:layout_height="100dip"
android:text="Click here to Crop"/>
</LinearLayout>