我怎么能Button
在我的 android 应用程序的顶部或底部放置一个栏?
也就是说,在Activities
我的应用程序中,我想要Button
所有这些栏中的栏。
一个快速访问的栏Buttons
(一个按钮主页,另一个退出按钮......等)
如何实施?
非常感谢您
我怎么能Button
在我的 android 应用程序的顶部或底部放置一个栏?
也就是说,在Activities
我的应用程序中,我想要Button
所有这些栏中的栏。
一个快速访问的栏Buttons
(一个按钮主页,另一个退出按钮......等)
如何实施?
非常感谢您
使用 aRelativeLayout
您可以将Views
它们放在 parent 的底部View
或 parent 的顶部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>
您可以做的是,您可以为该按钮栏创建一个新类,并将该 UI 元素包含在您的所有屏幕中。这个概念被称为片段。如果您更改片段的代码一次,它将反映在所有其他屏幕上。 这是关于片段的教程。