アクティビティの最後にボタン バーを表示したい。次の名前のレイアウトを作成しました: batton_bar_ref.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/shape_blue_light_horizental_gradiant_notrounded"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="10dip"
android:paddingTop="10dip" >
<Button
android:id="@+id/pay_button"
android:layout_width="100dip"
android:layout_height="50dip"
android:text="@string/pay"
android:textSize="16sp"
android:textStyle="bold" >
</Button>
</LinearLayout>
</RelativeLayout>
そして、それ<include layout="@layout/button_bar_ref"/>
を別のレイアウトに追加します。
警告メッセージが表示されています:
This LinearLayout layout or its RelativeLayout parent is useless; transfer the background attribute to the other view.
どうすれば修正できますか?
補遺:
- ボタンバーは画面の最後にある必要があります。
- Linear レイアウトには背景があることに注意してください。