gpt4 book ai didi

android - 为首选项创建自定义布局

转载 作者:IT老高 更新时间:2023-10-28 21:34:00 27 4
gpt4 key购买 nike

我正在尝试创建一个自定义布局来管理首选项。我知道 PreferenceActivity 提供了标准和推荐的布局,但是如果我想添加一个 Button,我该如何获得呢?

我计划设计应用程序,以便当用户触摸主 Activity 屏幕上的某个项目时,它会转到用户可以启用的选项“子菜单”,随后会出现在下一个屏幕上(它必须处于这种线性进展中)。用户每次使用应用程序时都必须设置这些。目前,我正在考虑使用标准的 PreferenceActivity 来表示这个选项子菜单。

也许这不是正确的方法?

编辑:我在谷歌搜索时忽略了解决方案。 How to add a button to PreferenceScreen

最佳答案

您始终可以创建自定义首选项布局项并在 PreferenceActivity 中使用它。例如,我是这样做的:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:paddingRight="?android:attr/scrollbarSize">

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dip"
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">

<TextView android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge"
android:ellipsize="marquee"
android:fadingEdge="horizontal" />

<TextView android:id="@android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
android:maxLines="2" />

<ImageView android:id="@+id/ImageView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/go"
android:layout_alignParentRight="true" />

</RelativeLayout>

<!-- Preference should place its actual preference widget here. -->
<LinearLayout android:id="@android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical" />

</LinearLayout>

它有一些浪费,但基本上创建了 2 行(标题、副标题),右侧有一个图像。您可以将 ImageView 替换为 Button,然后一切就绪。然后在 xml/prefs.xml 文件中为个人偏好设置布局,如下所示:

<Preference
android:title="@string/label_pref_version"
android:key="@string/pref_version"
android:layout="@layout/pref" />

之后,只需在 Activity 代码中触发 findViewById 并将监听器附加到按钮。如果 Activity 中有多个按钮,可能需要做更多的工作,但不应不合理。

您可以在这里找到源代码:https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/layout/preference.xml

关于android - 为首选项创建自定义布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6194116/

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