Android AlertDialog constructor is undefined

不羁的心 提交于 2019-12-23 04:05:20

问题


I'm trying to have a alert dialog show if account info is missing when clicking the check the account. I get an error in Eclipse where new AlertDialog.Builder(this) saying the constructor AlertDialog.Builder(new View OnClickListener(){}) is undefined. The code works fine if I add it to the onCreate of the activity.

checkButton.setOnClickListener(new OnClickListener() {
        public void onClick(View Arg0){
            String AccNum = null, Store = null;
            final SharedPreferences settings = getSharedPreferences(CHECK_PREFERENCES, MODE_PRIVATE);

            if (settings.contains("Account") == true){
                AccNum = (settings.getString("Account", "default"));
                Store = (settings.getString("Store", "default"));
            }
            if (AccNum.length() < 7) { 
                AlertDialog alert = new AlertDialog.Builder(this).create();
                alert.setTitle("Account Information missing!");
                alert.setMessage("Enter now? ");

                alert.setButton("Yes", new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            startActivity(new Intent(CheckOrder.this, GoToSetup.class));
                        }
                });
                alert.setButton2("No", new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            return;
                        }
                });
                alert.show();   

            }
        }
});

回答1:


The error occurs because this is the OnClickListener that you're creating (in the call to checkButton.setOnClickListener(new OnClickListener(){), not the parent Activity. If your Activity class is ParentActivity, try this:

AlertDialog alert = new AlertDialog.Builder(ParentActivity.this).create();



回答2:


Your class needs to extends Activity, such as

public class MyClass extends Activity{
// ... Your code
}



回答3:


I had same problem. Try this one.

AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);


来源:https://stackoverflow.com/questions/6971004/android-alertdialog-constructor-is-undefined

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!