0

可以将用户定义的首选项保存在另一个首选项中(逗号分隔)还是有更清洁和更好的方法?

<?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_.:/]+$"));
    }

}

它应该看起来像这样,并将通过编辑和删除条目来扩展: 它看起来如何

4

2 回答 2

0

Refer to SharedPreferences.Editor. If you have questions there, let me know.

Edit: Sorry, somehow, the code you pasted did not load the first time. I'll put here a way of taking the preferences from a saved file in a jiffy.

Here they are, sorry if there'some error in there, I typed it in Notepad.

private final String PREFS_NAME = "prefs";

private final String KEY_AGE = "age";
private final String KEY_COUNTRY = "location";

  SharedPreferences sharedPreferences = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
  SharedPreferences.Editor editor = sharedPreferences.edit();

  editor.putInt(KEY_AGE, "13");
  editor.putString(KEY_COUNTRY, "USA");

  editor.commit();

// To retrieve the values

  SharedPreferences sharedPreferences = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
  sharedPreferences.getInt(KEY_AGE, 0);
  sharedPreferences.getString(KEY_COUNTRY, 0);

If this does not suit your needs, then use a database.

于 2013-02-26T12:46:48.733 回答