Android首选项中的是或否确认

时间:2014-03-28 22:32:48

标签: android android-preferences dialog-preference

我需要实现一个"重置"设置中的选项。单击该设置时,将打开一个简单的对话框,要求确认。

我已经看过DialogPreference,但我似乎无法在任何地方找到一个好的解决方案或教程。有人可以帮帮我吗?我是初学者,想法甚至代码会非常有帮助,谢谢。

2 个答案:

答案 0 :(得分:7)

检查此链接。使用AlertDialog.Builder,很容易做到

http://developer.android.com/guide/topics/ui/dialogs.html

否则使用DialogPreference ..

将此添加到首选项xml

  <com.examples.app.CustomDialogPreference
    android:title="Title"
    android:dialogMessage="Message"
    android:positiveButtonText="Yes"
    android:negativeButtonText="No"/>

在您的代码中,创建一个自定义对话框。这很奇怪,但你必须

public class CustomDialogPreference  extends DialogPreference{
   public CustomDialogPreference(Context oContext, AttributeSet attrs){
     super(oContext, attrs);
    }
}

答案 1 :(得分:7)

我使用了一个简单的解决方案并且它有效,但我不知道这是否是最好的方法。

是没有上课:

package com.me.myapp;
public class YesNo extends DialogPreference  
{ 
    public YesNo(Context context, AttributeSet attrs)   
    {  
        super(context, attrs);
    }

    @Override
    protected void onClick()
    {
        AlertDialog.Builder dialog = new AlertDialog.Builder(getContext());
        dialog.setTitle("Reset application?");
        dialog.setMessage("This action will delete all your data. Are you sure you want to continue?");
        dialog.setCancelable(true);
        dialog.setPositiveButton("Delete", new DialogInterface.OnClickListener() 
        {
            @Override
            public void onClick(DialogInterface dialog, int which) 
            {
                //reset database
                Toast.makeText(getContext(), "Application reset!", Toast.LENGTH_SHORT).show();
            }
        });

        dialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() 
        {
            @Override
            public void onClick(DialogInterface dlg, int which) 
            {
                dlg.cancel();
            }
        });

        AlertDialog al = dialog.create();
        al.show();
    }
}

和XML文件中的首选项:

<com.me.myapp.YesNo
        android:title="Reset application"
        android:summary="Delete all data"
        />