按钮栏在Android应用程序的上方或下方

时间:2012-07-16 19:54:49

标签: android

我如何在我的Android应用程序的顶部或底部放置一个Button栏?

也就是说,在我的应用的Activities中,我希望所有这些都有Button条。

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

如何实施?

非常感谢

2 个答案:

答案 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>

enter image description here

答案 1 :(得分:0)

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