0

我怎么能Button在我的 android 应用程序的顶部或底部放置一个栏?

也就是说,在Activities我的应用程序中,我想要Button所有这些栏中的栏。

一个快速访问的栏Buttons(一个按钮主页,另一个退出按钮......等)

如何实施?

非常感谢您

4

2 回答 2

1

使用 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>

在此处输入图像描述

于 2012-07-16T19:59:55.210 回答
0

您可以做的是,您可以为该按钮栏创建一个新类,并将该 UI 元素包含在您的所有屏幕中。这个概念被称为片段。如果您更改片段的代码一次,它将反映在所有其他屏幕上。 是关于片段的教程。

于 2012-07-16T20:14:12.443 回答