1

我正在尝试检查 editText 首选项的输入格式,在本例中为 24 小时格式 H:mm,如果出现输入格式错误,我想强制编辑对话框再次出现。

我的想法是使用在实现 PreferenceScreen 的设置活动上运行的 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 输入格式的最佳方法。

谢谢!

4

1 回答 1

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

于 2011-09-01T19:00:52.727 回答