子として LinearLayout (ビデオ ボタン コンテナー) とイメージ ボタンがあります。そのビデオ ボタンを右揃えにしたいので、 を付けましたlayout_gravity="right"
。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<!-- VIDEO BUTTON CONTAINER -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#000000"
android:layout_gravity="top">
<!-- VIDEO BUTTON -->
<ImageButton
android:id="@+id/button_video"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="?android:attr/selectableItemBackground"
android:contentDescription="@string/desc"
android:paddingBottom="@dimen/controls_button_padding"
android:paddingTop="@dimen/controls_button_padding"
android:src="@drawable/ic_action_video" />
</LinearLayout>
<!-- some FrameLayout and another LinearLayout -->
</LinearLayout>
それはこれを生成します:
私が欲しいのはこれです:
そして、ビデオボタンコンテナを に変更することでそれを取得しandroid:orientation="horizontal"
ますandroid:orientation="vertical"
。どうしたの?コンテナーの水平方向で機能しないのはなぜですか?