尝试编写自定义对话框首选项(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" />
我怎么能:
我希望有人可以对此有所了解,可怜的Android文档在这个主题上并不是一点友善。
非常感谢。
答案 0 :(得分:0)
在Google的文档中,他们对包含该变量的变量说了这个 新价值
在此示例中,
mNewValue
是一个包含设置当前值的类成员。
因此,您似乎必须依赖成员字段来跟踪包含新值的视图。这就是我解决它的方式
private EditText newPasswordField;
@Override
protected void onBindDialogView(View view) {
super.onBindDialogView(view);
newPasswordField = view.findViewById(R.id.new_password_field);
}
所以基本上你覆盖一个方法,让你保持对任何元素的引用,保存你的新设置值
然后你做你已经拥有的东西:提取新值
@Override
protected void onDialogClosed(boolean positiveResult) {
Log.i(TAG, "Password dialog closed. Result = " + positiveResult);
if (positiveResult) {
persistString(newPasswordField.getText().toString());
}
}