テーマに合わせてアプリの見栄えの良いボタン バーを作成しようとしています。これまでのところ、次のコードを使用しています。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footer"
style="@android:style/ButtonBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
android:orientation="horizontal" >
<Button
android:id="@+id/Formula"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Formula" />
<Button
android:id="@+id/Solve"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Solve" />
<Button
android:id="@+id/Clear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Clear" />
</LinearLayout>
そして、次のような結果が得られます。
また、そのバーを見栄えの良いものに置き換えるためのコードにも取り組んでいます。それは次のとおりです。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentBottom="true" >
<View
android:layout_width="match_parent"
android:layout_height="1dip"
android:layout_alignParentTop="true"
android:layout_marginLeft="4dip"
android:layout_marginRight="4dip"
android:background="@drawable/black_white_gradient" />
<View
android:id="@+id/ViewOne"
android:layout_width="1dip"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="4dip"
android:layout_marginTop="4dip"
android:background="@drawable/black_white_gradient" />
<Button
android:id="@+id/ButtonOne"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@id/ViewOne"
android:background="@color/button_blue_background"
android:paddingTop="5dp"
android:text="Cancel"
android:textColor="@color/button_dark_text" />
<Button
android:id="@+id/ButtonTwo"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/ViewOne"
android:background="@color/button_blue_background"
android:text="OK"
android:textColor="@color/button_dark_text" />
</RelativeLayout>
結果は次のとおりです。
だから私の問題は、新しい黒いバーに 3 つのボタンを取得できないことです。android:layout_toRightOf 属性を使用してビューとボタンを追加しようとしましたが、まだ機能しません。これを達成するために何ができるかについてのアイデアはありますか?