-1

ねえ、XML のボタンのコードは次のとおりです。Anthem ボタンを左下隅近くに移動して、右下に停止ボタンを追加したいと思います。どなたかアドバイスをお願いします。これ?

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="@string/country1"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textSize="45sp" />

<ImageView
    android:id="@+id/ivFlag1"
    android:layout_width="match_parent"
    android:layout_height="64dp"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="55dp"
    android:src="@drawable/sflag" />

<Button
    android:id="@+id/bEdinburgh"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/ivFlag1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29dp"
    android:gravity="center"
    android:text="@string/Edinburgh"
    android:textSize="20sp" />

<Button
    android:id="@+id/bGlasgow"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/bEdinburgh"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29dp"
    android:gravity="center"
    android:text="@string/Glasgow"
    android:textSize="20sp" />

<Button
    android:id="@+id/bAberdeen"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/bGlasgow"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29dp"
    android:gravity="center"
    android:text="@string/Aberdeen"
    android:textSize="20sp" />

<Button
    android:id="@+id/bAnthem"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/bAberdeen"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29dp"
    android:background="@drawable/custom"
    android:textSize="20sp" />

4

2 に答える 2

3

Anthem ボタンで次の属性を設定します

android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"

停止ボタンに続く

android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
于 2013-03-06T23:41:37.153 に答える
1

Anthem Buttonで、android:layout_alignParentLeftまたはandroid:layout_alignParentRightを設定trueしてトリックを実行します。

于 2013-03-06T23:36:13.183 に答える