view XposedLibrary/src/de/robv/android/xposed/library/ui/ListPreferenceFixedSummary.java @ 1:30f975176f8e

Icon
author Brad Greco <brad@bgreco.net>
date Tue, 21 Jan 2014 20:06:31 -0600
parents 3da8a7a621cd
children
line wrap: on
line source

package de.robv.android.xposed.library.ui;

import android.content.Context;
import android.preference.ListPreference;
import android.util.AttributeSet;

public class ListPreferenceFixedSummary extends ListPreference {
	public ListPreferenceFixedSummary(Context context) {
		super(context);
	}
	
	public ListPreferenceFixedSummary(Context context, AttributeSet attrs) {
		super(context, attrs);
	}
	
	@Override
	public void setValue(String value) {
		super.setValue(value);
		notifyChanged();
	}
}