PreferenceScreen 的状态列表?

发布于 2024-11-04 05:34:16 字数 256 浏览 4 评论 0原文

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

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

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

I've added a widget layout to my preference screens showing an arrow icon, to indicate to users that there are more preferences behind a given PreferenceScreen.

However, I notice when a PreferenceScreen is not enabled it is darkened. Is there a way I could also change the widget layout being used, or make it stateful, so that I could use a faded icon when my PreferenceScreen is disabled? Similar to how a state list drawable can be applied as a button's background?

tl;dr: How can I change the icon displayed when an instance of PreferenceLayout is disabled?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情释 2024-11-11 05:34:16

只需使用 XML,只需 3 个步骤即可完成此操作。

首先,创建一个有状态的可绘制对象,它可以根据使用它的小部件是否启用、禁用等进行更改。因此 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" />

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

关于 Statelist Drawable 的 Android 文档。

关于首选项 widgetLayout 的 Android 文档。

This can be done solely with XML in 3 steps.

First, create a stateful drawable that can change according to whether the widget using it is enabled, disabled, etc. So statelist_example.xml kept in the drawable folder:

<?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>

Then define your own layout to use this drawable in the layouts folder. This will become the "widgetLayout" for the Preference. So 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>

Third, specify the widgetLayout in every preference to use this layout:

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

So basically you have your Preference reference a Layout which references a stateful drawable.

Android Docs on Statelist Drawable.

Android Docs on Preference widgetLayout.

錯遇了你 2024-11-11 05:34:16

好方法

我认为解决这个问题的最好方法是创建您自己的类来扩展 Preference/PreferenceScreen。您想要的布局资源在类的初始化中调用:

 setWidgetLayoutResource(R.layout.preference_color); 

它创建要在小部件区域中显示的视图,我认为禁用首选项时该视图不会变灰。

黑客/丑陋的方法

恐怕我只是想出了一个解决这个问题的办法,我不相信小部件支持状态。

只需以编程方式更改小部件:

   Preference BGColor = findPreference("Setting_BG_Color"); 
   BGColor.setWidgetLayoutResource(R.layout.ic_custom);

然后在每次调用依赖项时更改小部件布局(有点混乱)。

pref1 = (Preference) findPreference("Setting_Pref1");
pref1.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
        @Override
        public boolean onPreferenceChange(Preference preference, Object newValue) {
            // Check what object returned (assume checkbox pref)
            if ((boolean)newValue){
                BGColor.setWidgetLayoutResource(R.layout.ic_custom2);
                }
            return true;
        }
    }); 

Nice method

The best way I can see to tackle this problem is to create your own class which extends a Preference/PreferenceScreen. The layout resource you want is called in the initialisation of the class:

 setWidgetLayoutResource(R.layout.preference_color); 

Which creates the view to be displayed in the widget area, which I don't think get grayed out when the preference is disabled.

Hacky/Ugly Method

Afraid I've only come up with a hack around this issue, I don't believe the widgets support states.

Just change the widget programatically:

   Preference BGColor = findPreference("Setting_BG_Color"); 
   BGColor.setWidgetLayoutResource(R.layout.ic_custom);

Then change the widget layout when each time a dependency is called (kinda messy).

pref1 = (Preference) findPreference("Setting_Pref1");
pref1.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
        @Override
        public boolean onPreferenceChange(Preference preference, Object newValue) {
            // Check what object returned (assume checkbox pref)
            if ((boolean)newValue){
                BGColor.setWidgetLayoutResource(R.layout.ic_custom2);
                }
            return true;
        }
    }); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文