我想在活动结束时显示一个按钮栏。我创建了一个名为: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.
你能告诉我我该如何解决吗?
附录:
- 按钮栏应该在屏幕的末尾。
- 请注意,线性布局有背景。