我在我的首选项屏幕中添加了一个小部件布局,显示了一个箭头图标,向用户表明给定的PreferenceScreen背后有更多的首选项。
但是,我注意到在没有启用PreferenceScreen时它会变暗。有没有办法我可以更改正在使用的窗口小部件布局,或使其有状态,以便在禁用我的PreferenceScreen时可以使用褪色图标?类似于如何将状态列表drawable应用为按钮的背景?
tl; dr:如何在禁用PreferenceLayout实例时更改显示的图标?
答案 0 :(得分:3)
这可以通过3个步骤单独完成。
首先,创建一个有状态的drawable,它可以根据使用它的小部件是否启用,禁用等进行更改。所以statelist_example.xml保存在drawable文件夹中:
<?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>
然后定义自己的布局以在layouts文件夹中使用此drawable。这将成为Preference的“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" />
所以基本上你的Preference引用是一个引用有状态drawable的布局。
答案 1 :(得分:1)
很好的方法
我能看到解决此问题的最佳方法是创建自己的类,扩展Preference / PreferenceScreen。您想要的布局资源在类的初始化中调用:
setWidgetLayoutResource(R.layout.preference_color);
这会创建要在窗口小部件区域中显示的视图,我不认为在禁用首选项时会显示灰色。
Hacky / Ugly Method
害怕我只是想解决这个问题,我不相信这些小部件会支持状态。
只需以编程方式更改窗口小部件:
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;
}
});