diff XposedLibrary/src/de/robv/android/xposed/library/ui/ListPreferenceFixedSummary.java @ 0:3da8a7a621cd

Initial commit
author Brad Greco <brad@bgreco.net>
date Mon, 20 Jan 2014 22:56:13 -0600
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/XposedLibrary/src/de/robv/android/xposed/library/ui/ListPreferenceFixedSummary.java	Mon Jan 20 22:56:13 2014 -0600
@@ -0,0 +1,21 @@
+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();
+	}
+}