ボタンを作成しました:
<?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 が機能しないようです。