受how-do-i-display-the-current-value-of-an-android-preference-in-the-preference-summary的启发,我创建了自己的EditTextPreference,在PreferenceScreen中显示其当前值。
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:key="preferences" xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="First Category"
android:key="first_category">
<de.k3b.widgets.EditTextPreferenceWithSummary
android:key="test"
android:title="Test Message"
android:dialogTitle="Test Message"
android:dialogMessage="Provide a message"
android:defaultValue="Default welcome message" />
</PreferenceCategory>
</PreferenceScreen>
实现看起来像这样
package de.k3b.widgets;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.*;
import android.util.AttributeSet;
import android.util.Log;
public class EditTextPreferenceWithSummary extends EditTextPreference {
private final static String TAG = EditTextPreferenceWithSummary.class.getName();
public EditTextPreferenceWithSummary(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public EditTextPreferenceWithSummary(Context context) {
super(context);
init();
}
private void init() {
Log.e(TAG, "init");
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this.getContext());
String currentText = test prefs.getString("minTrashholdInSecs", this.getText());
// where do i get the current value of the underlaying EditTextPreference ??
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
this.setSummary(this.getText());
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
@Override
public boolean onPreferenceChange(Preference preference, Object newValue) {
Log.w(TAG, "display score changed to "+newValue);
preference.setSummary(newValue.toString()); // getSummary());
return true;
}
});
}
}
首次显示PreferenceScreen时,不显示当前值。
我的问题:我在哪里可以获得EditTextPreference所代表的当前值? getText()没有得到我预期的值。 更改优先值后,此值将按预期显示在摘要字段中。
我正在使用android 2.2
答案 0 :(得分:3)
尝试将以下代码添加到EditTextPreferenceWithSummary
类:
@Override
protected View onCreateView(ViewGroup parent) {
this.setSummary(this.getText());
return super.onCreateView(parent);
}
至于我,它有效。 我认为问题是你试图从UI线程中改变UI状态(事实上在构造函数中)。
答案 1 :(得分:2)
这是一个更完整的示例,包括值更新时,无需安装首选项侦听器。
import android.content.Context;
import android.preference.EditTextPreference;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
public class EditTextPreferenceWithValueSummary extends EditTextPreference{
public EditTextPreferenceWithValueSummary(Context context) {
super(context);
}
public EditTextPreferenceWithValueSummary(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected View onCreateView(ViewGroup parent) {
this.setSummary(this.getText());
return super.onCreateView(parent);
}
@Override
protected void onDialogClosed(boolean positiveResult) {
super.onDialogClosed(positiveResult);
if (positiveResult) {
this.setSummary(getText());
}
}
}
在您的xml/settings.xml
:
<your.package.views.EditTextPreferenceWithValueSummary
android:key="some_preference_key"
android:title="Some Title" />