我如何在我的Android应用程序的顶部或底部放置一个Button
栏?
也就是说,在我的应用的Activities
中,我希望所有这些都有Button
条。
快速访问Buttons
的栏(主页按钮,另一个退出按钮等)
如何实施?
非常感谢
答案 0 :(得分:1)
使用RelativeLayout
,您可以放置位于父Views
底部或父View
顶部的View
。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="left top of parent" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="right top of parent" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal" >
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="left bottom of parent" />
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="right bottom of parent" />
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:0)
您可以做的是,您可以为该按钮栏创建一个新类,并在所有屏幕中包含该UI元素。这个概念叫做片段。如果您更改片段的代码,它将反映在所有其他屏幕上。 Here是片段教程。