1

我正在开发一个应用程序,无论屏幕分辨率如何,我都需要在底部放置两个按钮。

最好的实施方式是什么?

4

3 回答 3

1

将这些按钮设置在新布局中(相对/线性 - 对应于您的布局视图)并给出android:layout_alignParentBottom="true"

于 2012-12-28T06:22:13.740 回答
1

在底部使用 a RelativeLayout withLinearLayout只有一种方法可以做到这一点,并用于layout_weight设置相同大小的按钮。

更新

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true" >

    <Button
        android:id="@+id/idBtn1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button 1" />

    <Button
        android:id="@+id/idBtn2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button 2" />
</LinearLayout>

于 2012-12-28T06:31:48.063 回答
0

尝试以这种方式使用页脚进行常用操作:

首先创建一个footer.xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >   
        <LinearLayout
            android:id="@id/idFooterMenu"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true">
            <Button
                android:id="@+id/footerBtn1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="Button1" />   
            <Button
                android:id="@+id/footerBtn2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="Button2" />
        </LinearLayout>
</RelativeLayout>

然后您可以footer.xml在任何其他屏幕中使用此文件,而无需再次重复代码

<include layout="@layout/footer" />

谢谢。

于 2012-12-28T06:46:16.877 回答