Android自定义首选项更改覆盖

时间:2012-04-27 18:46:33

标签: android preference

我的自定义偏好类有助于颜色挑选 自定义首选项调用GridView Intent它包含9种颜色 但我的自定义类无法刷新用户在gridview上选择的颜色

当我完成偏好意图,然后重新启动偏好,
我选择的颜色显示在我身上。

onBindView()方法,我哭了。这很完美。
但我不知道我必须覆盖哪种方法来刷新颜色。

enter image description here


public class ConfigImage extends Preference
{
    Context mContext;

    public ConfigImage(Context context, AttributeSet attrs)
    {
        this(context, attrs, 0);
        this.mContext = context;
    }

    public ConfigImage(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
        this.mContext = context;
        setLayoutResource(R.layout.preference_image);
    }

    @Override
    public void onBindView(View view)
    {
        super.onBindView(view);
        ImageView imageView = (ImageView) view.findViewById(R.id.preference_image_iv_color);
        if (imageView != null)
        {
            SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(mContext);
            int colorIndex = sharedPref.getInt("setting_color_default", 3);
            imageView.setBackgroundColor(Color.parseColor(ColorStorage.colors[colorIndex]));
        }
    }
}

    <PreferenceCategory
    android:key="setting_color_info"
    android:title="색상" >

    <com.pack.ConfigImage
        android:id="@+id/setting_color_default"
        android:key="setting_color_default"
        android:selectable="true"
        android:summary="Choose default color"
        android:title="Default Color"
        settings:background="#FFFFFFFF" />
</PreferenceCategory>

1 个答案:

答案 0 :(得分:0)

假设您的问题没有得到共享偏好更改的通知,那么您应该订阅它的更改

registerOnSharedPreferenceChangeListener(this);