我正在尝试将底部工具栏集成到我的应用程序中。 该栏将用于许多不同的活动,因此我在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>
答案 0 :(得分: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>
答案 1 :(得分:0)
BottomBar顶部的布局应具有以下属性:
<Linearlayout
....
android:layout_height="0dip"
android:layout_weight="1"
/>
虽然你的底栏应该
<Linearlayout
....
android:layout_height="wrap_content"
/>
要小心:
这与您的问题无关,但这些底栏属于iPhone。
主页按钮实际上应该像一个向上按钮:http://developer.android.com/design/patterns/navigation.html
其他三个部分应该属于ActionBar:http://developer.android.com/design/patterns/actionbar.html