无法在Android应用中显示简单消息

时间:2015-07-30 15:03:54

标签: android visual-studio-2015

我今天开始使用Visual Studio 2015开发Android应用程序,并且我想知道为什么我无法显示AlertDialog,因为它引发了一个关于Android.Views.WindowManagerBadTokenException的例外情况,而且我没有&#39我看错了......

private void Button_Click(object sender, EventArgs e)
{
    ((Button)sender).Text = string.Format("{0} clicks!", count++);
    try
    {
        AlertDialog.Builder builder = new AlertDialog.Builder(this.ApplicationContext);
        builder.SetTitle("This is a title..");
        builder.SetMessage("This is a message..");
        AlertDialog ad = builder.Create();
        ad.Show();
    }
    catch (Exception ex)
    { ((Button)sender).Text = ex.Message; }
}

1 个答案:

答案 0 :(得分:0)

首先,如果你刚刚开始为Android开发,使用ANDROID STUDIOS ,除非你有一个非常好的理由在Visual Studios中开发。 Android Studios是我用过的最好的IDE,我强烈推荐它。

但是,如果您想坚持使用Visual Studios,请尝试以下代码:

AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
alertDialog.setTitle("Alert");
alertDialog.setMessage("Alert message to be shown");
alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
    new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            dialog.dismiss();
        }
    });
alertDialog.show();

this问题拉出来。也许是因为你的.Create()和.Show()应该全部是小写而不是驼峰。