我正在尝试检查editText首选项的输入格式,在本例中为24小时格式H:mm,如果输入格式错误,我想强制再次显示编辑对话框。
我的想法是使用在实现PreferenceScreen的Settings活动上运行的OnPreferenceChange侦听器:
@Override
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
//check 24 hour format
SharedPreferences myPreferences = PreferenceManager.getDefaultSharedPreferences(ctx);
String startTime= myPreferences.getString(PREF_FLAT_RATE_START, "18:00");
try{
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
Date time = sdf.parse(startTime);
}catch (Exception e){ //If exception there is a format error...
Log.v("Settings", "rateTime not properly formatted");
---> Re Open Dialog from EditText key = PREF_FLAT_RATE_START <---
}
}
有可能吗?我已经尝试从findViewByid(EDITTEXT)获取对话框,但由于它在运行时不再显示,我得到一个空指针:(
此外,我不确定这是否是检查输入格式和HOUR和MINUTE的最佳方法。
谢谢!
答案 0 :(得分:0)
最后,经过几个小时的搜索,我放弃并创建了一个部分解决方案。我创建了一个对话框来通知用户并恢复了每个集合FAIL的默认值。
这就是我所做的:
@Override
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
String key) {
if(key.equals(/**FINAL VALUE**/)){
String startTime = sharedPreferences.getString(/**FINAL VALUE**/, "18:00");
try{
SimpleDateFormat sdf = new SimpleDateFormat("H:mm");
sdf.parse(startTime);
}catch (Exception e){
Log.v("Settings", "error parsing /**FINAL VALUE**/");
showDialog(DIALOG_FINAL_INT);
//Restore the value.
SharedPreferences myPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
SharedPreferences.Editor myPreferencesEditor = myPreferences.edit();
myPreferencesEditor.putString(/**FINAL VALUE**/, "18:00");
myPreferencesEditor.commit();
}
}
}
请注意,您必须注册侦听器并取消注册onStop。 要创建/定义对话框,我也做了:
protected Dialog onCreateDialog(int id) {
Dialog dialog;
switch(id) {
case /**FINAL_INT**/:
// do the work to define the Dialog
AlertDialog.Builder builder1 = new AlertDialog.Builder(this);
builder1.setMessage(R.string.STRINGID)
.setCancelable(false)
.setNegativeButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert1 = builder1.create();
dialog = alert1;
break;
[...]
参考文献:
http://developer.android.com/guide/topics/ui/dialogs.html
http://developer.android.com/reference/android/content/SharedPreferences.html