下部のツールバーをアプリケーションに統合しようとしています。バーはさまざまなアクティビティで使用されるため、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>