0

我正在尝试将底部工具栏集成到我的应用程序中。该栏将用于许多不同的活动,因此我在我的 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>

4

2 回答 2

1

将代码包装在相对布局中

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true">

     <include
         android:layout_height="0dip"
         layout="@layout/test2" />

</LinearLayout>
于 2012-12-26T16:48:22.107 回答
0

BottomBar 顶部的布局应具有以下属性:

<Linearlayout
    ....
    android:layout_height="0dip"
    android:layout_weight="1"
     />

虽然你的底栏应该有

<Linearlayout
    ....
android:layout_height="wrap_content"
     />

小心点:

这与您的问题无关,但这样的底栏属于 iPhone。

Home 按钮实际上应该看起来像一个向上按钮:http: //developer.android.com/design/patterns/navigation.html

而其他三个部分应该属于ActionBar:http: //developer.android.com/design/patterns/actionbar.html

于 2012-12-26T16:33:45.397 回答