EditTextPreference Отключить кнопки? - PullRequest
4 голосов
/ 21 января 2011

Я хочу иметь EditTextPreference, который отключит кнопку OK, если в поле EditText нет текста. Я создал собственный класс EditTextPreference и смог получить объект EditText и установить TextWatcher, но не могу найти способ отключить кнопку. Похоже, у меня просто нет доступа к кнопкам OK и Отмена в диалоге.

Кто-нибудь знает способ получить эти кнопки или сделать то, что я пытаюсь сделать?

Единственный другой вариант - попытаться создать с нуля пользовательский диалог, который выглядит и имитирует EditTextPreference.

Ответы [ 2 ]

9 голосов
/ 21 января 2011

Вот пример кода, который включает / отключает кнопку в зависимости от того, возвращает ли onCheckValue функция true или false.

public class ValidatedEditTextPreference extends EditTextPreference
{
    public ValidatedEditTextPreference(Context ctx, AttributeSet attrs, int defStyle)
    {
        super(ctx, attrs, defStyle);        
    }

    public ValidatedEditTextPreference(Context ctx, AttributeSet attrs)
    {
        super(ctx, attrs);                
    }

    private class EditTextWatcher implements TextWatcher
    {    
        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count){}

        @Override
        public void beforeTextChanged(CharSequence s, int start, int before, int count){}

        @Override
        public void afterTextChanged(Editable s)
        {        
            onEditTextChanged();
        }
    }
    EditTextWatcher m_watcher = new EditTextWatcher();

    /**
     * Return true in order to enable positive button or false to disable it.
     */
    protected boolean onCheckValue(String value)
    {        
        return Strings.hasValue(value);
    }

    protected void onEditTextChanged()
    {
        boolean enable = onCheckValue(getEditText().getText().toString());
        Dialog dlg = getDialog();
        if(dlg instanceof AlertDialog)
        {
            AlertDialog alertDlg = (AlertDialog)dlg;
            Button btn = alertDlg.getButton(AlertDialog.BUTTON_POSITIVE);
            btn.setEnabled(enable);                
        }
    }

    @Override
    protected void showDialog(Bundle state)
    {
        super.showDialog(state);

        getEditText().removeTextChangedListener(m_watcher);
        getEditText().addTextChangedListener(m_watcher);
        onEditTextChanged();
    }    
}
1 голос
/ 22 июля 2013

нужно изменить старый EditTextPreference на новый ValidatedEditTextPreference в preference.xml.

Я сделал следующее:

Старый код:

<EditTextPreference
    android:dialogMessage="Please input your email"
    android:dialogTitle="Set email"
    android:key="Email"
    android:summary="Your email"
    android:title="-Missed call send to" android:defaultValue="xxx@xxx.xxx"/>

Новый код:

<com.tanggod.missedcall2mail.ValidatedEditTextPreference
    android:dialogMessage="Please input your email"
    android:dialogTitle="Set email"
    android:key="Email"
    android:summary="Your email"
    android:title="-Missed call send to" android:defaultValue="xxx@xxx.xxx"/>
...