首选项XML中是否不允许元素?

时间:2019-07-08 12:47:59

标签: java android android-preferences

我正在android项目中进行偏好设置。我想在EditTextPreference中获取Integer值。我搜索了这个主题,并且可以与此java类一起使用。

import androidx.preference.EditTextPreference;

public class IntegerEditTextPreference extends EditTextPreference {

    public IntegerEditTextPreference(Context context) {
        super(context);
    }

    public IntegerEditTextPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public IntegerEditTextPreference(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected String getPersistedString(String defaultReturnValue) {
        int defaultValue = -1;
        try {
            defaultValue = Integer.valueOf(defaultReturnValue);
        } catch(NumberFormatException e) {

        }

        return String.valueOf(getPersistedInt(defaultValue));
    }

    @Override
    protected boolean persistString(String value) {
        return persistInt(Integer.valueOf(value));
    }
}

但是,我不能在XML中使用。当我使用时;

   <com.example.A.IntegerEditTextPreference
            android:defaultValue="80"
            android:inputType="numberPassword"
            android:key="Speed"
            android:persistent="false"
            android:numeric="integer"
            android:maxLength="3"
            android:title="Choose Speed" />

我遇到此错误:“此处不允许元素”。现在,我正在搜寻,他们说我必须在drawable中使用xml文件夹,但是它是Preference XML,所以我不能。我该怎么办?

编辑:我添加了xml文件。

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <PreferenceCategory android:title="Notification">
        <SwitchPreference
            android:defaultValue="false"
            android:icon="@drawable/B"
            android:key="B"
            android:title="B" />
        <SwitchPreference
            android:defaultValue="false"
            android:icon="@drawable/A"
            android:key="A"
            android:title="A" />

       <com.example.A.IntegerEditTextPreference
            android:defaultValue="80"
            android:inputType="numberPassword"
            android:key="Speed"
            android:persistent="false"
            android:numeric="integer"
            android:maxLength="3"
            android:title="Choose Speed" />
    </PreferenceCategory>
</PreferenceScreen>

1 个答案:

答案 0 :(得分:0)

您可以约束EditTextPreference。但是,当您获得此值时,请转换Integer或其他值。

<EditTextPreference
    android:key="Speed"
    android:selectAllOnFocus="true"
    android:singleLine="true"
    android:summary="A"
    android:title="A" />