我正在尝试将底部工具栏集成到我的应用程序中。该栏将用于许多不同的活动,因此我在我的 XML 中使用以下行将其包含在每个布局中:
<include
android:layout_height="0dip"
layout="@layout/test2" />
test2.xml 的输出如下:
当我将它包含在我的主要活动中时,输出如下所示:
我想让它尽可能靠近底部。我不知道该怎么做。我们欢迎所有的建议!
我的 activity_main.xml 文件如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:gravity="center|center_vertical"
android:orientation="vertical"
android:textAlignment="center"
android:weightSum="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="130dp"
android:layout_weight="1"
android:orientation="vertical"
android:weightSum="1" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/homeTitle"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/orderBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_margin="10dp"
android:text="@string/orderbtn" />
<Button
android:id="@+id/viewBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="@string/viewbtn" />
<Button
android:id="@+id/feedbackBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="@string/feedbackbtn" />
<Button
android:id="@+id/payBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_margin="10dp"
android:text="@string/paybtn" />
<include
android:layout_height="0dip"
layout="@layout/test2" />
</LinearLayout>