可以将用户定义的首选项保存在另一个首选项中(逗号分隔)还是有更清洁和更好的方法?
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:key="client" android:title="@string/client">
<PreferenceScreen
android:key="manage_sources"
android:title="@string/manage_sources"
android:persistent="false">
<com.example.preference.EditSourcePreference
android:key="add_source"
android:title="@string/add_source"
android:dialogTitle="@string/add_source" />
<PreferenceCategory
android:key="sources"
android:title="@string/sources" />
</PreferenceScreen>
</PreferenceCategory>
</PreferenceScreen>
这是一个嵌套的 PreferenceScreen,为添加源提供了首选项。这是Java代码:
public class EditSourcePreference extends EditTextPreference implements TextWatcher {
private EditText source;
private Button positiveButton;
private String originalSource;
public EditSourcePreference(Context context) {
super(context);
}
public EditSourcePreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void showDialog(Bundle state) {
super.showDialog(state);
source = getEditText();
source.addTextChangedListener(this);
positiveButton = ((AlertDialog) getDialog()).getButton(AlertDialog.BUTTON_POSITIVE);
afterTextChanged(source.getText());
originalSource = source.getText().toString();
}
@Override
protected void onDialogClosed(boolean positiveResult) {
if (!positiveResult) {
return;
}
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(getContext());
SharedPreferences.Editor editor = pref.edit();
String sources = pref.getString("sources", ""),
newSource = source.getText().toString();
boolean append = sources.indexOf(originalSource) != -1; // TODO: needs debugging!!!
if (append) {
if (!"".equals(sources)) {
sources += ";";
}
sources += newSource;
} else {
sources = sources.replace(originalSource, newSource);
}
editor.putString("sources", sources);
editor.commit();
super.onDialogClosed(positiveResult);
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
positiveButton.setEnabled(s.toString().matches("^[a-z0-9_:/]+[.]+[a-z0-9_.:/]+$"));
}
}
它应该看起来像这样,并将通过编辑和删除条目来扩展: