gpt4 book ai didi

android - PreferenceScreen 的状态列表?

转载 作者:搜寻专家 更新时间:2023-11-01 08:14:45 26 4
gpt4 key购买 nike

我在我的首选项屏幕上添加了一个小部件布局,显示一个箭头图标,以向用户表明在给定的 PreferenceScreen 后面还有更多首选项。

但是,我注意到当未启用 PreferenceScreen 时它会变暗。有没有办法我也可以更改正在使用的小部件布局,或者使其有状态,以便在禁用 PreferenceScreen 时可以使用褪色的图标?类似于状态列表可绘制对象如何用作按钮的背景?

tl;dr:当禁用 PreferenceLayout 实例时,如何更改显示的图标?

最佳答案

这可以通过 3 个步骤单独使用 XML 完成。

首先,创建一个有状态的可绘制对象,它可以根据使用它的小部件是否启用、禁用等而变化。因此 statelist_example.xml 保存在可绘制对象文件夹中:

<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/expander_ic_minimized"
android:state_enabled="true" />
<item
android:drawable="@drawable/expander_ic_minimized_faded"
android:state_enabled="false" />
</selector>

然后定义您自己的布局以在布局文件夹中使用此可绘制对象。这将成为首选项的“widgetLayout”。所以layout_example.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+android:id/widget_frame"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/icon"
android:src="@drawable/statelist_example"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="6dip"
android:layout_marginRight="6dip"
android:layout_gravity="center" />
</LinearLayout>

第三,在每个首选项中指定 widgetLayout 以使用此布局:

        <Preference
android:key="preference_example"
android:title="@string/preference_title"
android:widgetLayout="@layout/layout_example" />

所以基本上您的首选项引用了一个引用有状态可绘制对象的布局。

Android Docs on Statelist Drawable.

Android Docs on Preference widgetLayout.

关于android - PreferenceScreen 的状态列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5857541/

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