0

ボタンを作成しました:

<?xml version="1.0" encoding="utf-8"?>

<Button
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/barBtn"
    android:layout_width="wrap_content"
    android:layout_height="32dp"
    android:layout_centerVertical="true"
    android:layout_marginRight="8dp"
    android:textColor="@color/white"
    android:layout_alignParentRight="true"
    android:background="@drawable/sel_btn_bar"
/>

よし、じゃあ別のレイアウトで配置してみる

<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    <ImageView
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"
            android:scaleType="fitXY"
            android:src="@drawable/bar"
            />

    <include layout="@layout/btn_bar"
             android:layout_alignParentRight="false"
             android:layout_alignParentLeft="true"/>
    <TextView
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:layout_centerInParent="true"
            android:textColor="@color/white"
            android:textStyle="bold"
            android:textSize="20sp"
            android:text="@string/city_fragment_title"
            />
</RelativeLayout>

android:layout_alignParentRightただし、ボタン宣言で削除する場合、そのボタンは左にのみ配置されます。なんで?

アップデート

レイアウトを含めると align が機能しないようです。

4

1 に答える 1

0

すでに使用しているボタンを定義したとき

android:layout_alignParentRight="true"

ボタンに適用されるものは、ボタンを含めるときに配置を定義しようとします。しかし、ボタンを含めるのではなく、レイアウト内にボタンを定義する必要があると思います。

于 2012-06-18T14:00:49.697 に答える