尝试编写自定义对话框首选项 (a NumberPickerDialog
)。尽管 android 文档详细介绍了这个主题,但我似乎在他们的文档中遗漏了一些基本的构建块。
到目前为止,我所拥有的是一个显示在设置活动中的自定义首选项对话框。我可以单击首选项并填写一个值,然后按确定/取消。
自定义布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/editTextNumberPickerValue"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
NumberPickerDialog(正在进行中...):
public class NumberPickerPreference extends DialogPreference {
public NumberPickerPreference(Context context, AttributeSet attrs) {
super(context, attrs);
setDialogLayoutResource(R.layout.numberpicker_dialog);
setPositiveButtonText(android.R.string.ok);
setNegativeButtonText(android.R.string.cancel);
setDialogIcon(null);
setPersistent(false);
}
@Override
protected void onBindDialogView(View view) {
super.onBindDialogView(view);
}
@Override
protected void onDialogClosed(boolean positiveResult) {
if (positiveResult) {
Editor editor = getEditor();
persistInt( value??? );
}
}
}
Preference.xml 扩展为:
<com.cleancode.utils.numberpickerpreference.NumberPickerPreference
android:defaultValue="550"
android:key="prefLongFlashDuration"
android:summary="@string/long_flash_duration_summary"
android:title="@string/long_flash_duration" />
我怎样才能:
- 居然显示默认值550?
- 从对话框中检索值?
- 强制只输入整数值?
我希望有人能对此有所了解,可怜的 Android 文档对这个话题并不友好。
非常感谢。