Android – 从选项菜单中d出文本对话框

Android – 从选项菜单中d出文本对话框,第1张

概述一个简单的问题.我想要一个静态对话框消息,当按下选项菜单中的按钮时,只能d出文本.这是我的菜单代码: @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.icon: Inte 一个简单的问题.我想要一个静态对话框消息,当按下选项菜单中的按钮时,只能d出文本.这是我的菜单代码:

@OverrIDe   public boolean onoptionsItemSelected(MenuItem item) {       switch (item.getItemID()) {           case R.ID.icon:                Intent intent = new Intent(this,Main.class);                startActivity(intent);           case R.ID.help:               //popup window code here       }       return true;   }}

我最简单的方法吗?谢谢!

解决方法
@OverrIDepublic boolean onoptionsItemSelected(MenuItem item) {   switch (item.getItemID()) {       case R.ID.icon:            Intent intent = new Intent(this,Main.class);            startActivity(intent);       case R.ID.help:           //popup window code hereToast.makeText(this,"This is the Toast message",Toast.LENGTH_LONG).show();   }   return true;}}

或者我可以使用对话框

@OverrIDepublic boolean onoptionsItemSelected(MenuItem item) {   switch (item.getItemID()) {       case R.ID.icon:            Intent intent = new Intent(this,Main.class);            startActivity(intent);       case R.ID.help:           //popup window code here AlertDialog.Builder alertBox = new AlertDialog.Builder(this);        // set the message to display        alertBox.setMessage("This is the alertBox!");        // add a neutral button to the alert Box and assign a click Listener        alertBox.setNeutralbutton("Ok",new DialogInterface.OnClickListener() {            // click Listener on the alert Box            public voID onClick(DialogInterface arg0,int arg1) {                // the button was clicked            }        });        // show it        alertBox.show();   }   return true;}

}

总结

以上是内存溢出为你收集整理的Android – 从选项菜单中d出文本对话框全部内容,希望文章能够帮你解决Android – 从选项菜单中d出文本对话框所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1128374.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存