gpt4 book ai didi

android - 在首选项菜单中使用相对布局

转载 作者:太空宇宙 更新时间:2023-11-03 10:29:25 24 4
gpt4 key购买 nike

我的应用程序中有首选项菜单。我正在使用 Android 1.6。我想在屏幕底部使用静态保存按钮。

我知道如何使用 android:layout_alignParentBottom="true" 的相对布局来做到这一点

    <Button
android:id="@id/preferencesSaveButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="10dp"
android:padding="15dp"
android:text="Save"
android:textStyle="bold" />

我们可以在 Relative Layout 中使用 preference 还是有其他实用的方法来做到这一点?

最佳答案

您可以在选项卡式布局中使用首选项 Activity ,这将是您查询的实用方法。选项卡式布局应该具有相对布局..在其中一个 tabhost 中,您可以通过一个看起来很酷的 Intent 使用首选项 Activity 。我不认为你需要一个偏好保存按钮..它会自动保存偏好并在你有偏好 Activity 时共享......

<?xml version="1.0" encoding="utf-8"?>

<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabhost"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<RelativeLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent">

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@android:id/tabs"
android:padding="5dp" />

<TabWidget
android:id="@android:id/tabs"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
</TabHost>

关于android - 在首选项菜单中使用相对布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8395463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com