これが私が使用しているアラートダイアログのコードです:
new AlertDialog.Builder(AlertDemo.this)
.setTitle("This is Alert Demo")
.setMessage("Here is an Alert Message!")
.setNeutralButton("Close", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dlg, int sumthin)
{
// do nothing – it will close on its own
}
})
.show();
this
代わりに書くAlertDemo.this
とエラーが表示されますThe constructor AlertDialog.Builder(new View.OnClickListener(){}) is undefined
..どういう意味ですか?this
との違いは何AlertDemo.this
ですか?