Сводка предпочтений с текущим значением через пользовательский EditTextPreference: как получить текущее значение? - PullRequest
2 голосов
/ 22 марта 2012

Вдохновленный how-do-i-display-the-current-value-of-an-and-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

Ответы [ 2 ]

3 голосов
/ 24 апреля 2012

Попробуйте добавить следующий код в ваш EditTextPreferenceWithSummary класс:

@Override
protected View onCreateView(ViewGroup parent) {
    this.setSummary(this.getText());
    return super.onCreateView(parent);
}

Как по мне, это работает.Я думаю, что проблема заключалась в том, что вы пытались изменить состояние пользовательского интерфейса вне потока пользовательского интерфейса (фактически в конструкторе).

2 голосов
/ 08 февраля 2014

Вот более полный пример, который включает в себя, когда значение обновляется, без необходимости устанавливать предпочтительные прослушиватели.

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" />
...