Android警报对话框并设置肯定按钮

Android警报对话框并设置肯定按钮,第1张

Android警报对话框并设置肯定按钮
alertDialog.Builder builder = new alertDialog.Builder(your_activity.this);builder.setTitle(!puzzle.isSolved() ? R.string.title_stats : stats.isNewBest() ? R.string.title_new_record : R.string.title_solved);builder.setMessage(msg);builder.setPositiveButton(R.string.label_ok, new DialogInterface.onClickListener() {    public void onClick(DialogInterface dialog, int id) {        Intent intent = new Intent("android.intent.action.VIEW", Uri.parse("http://www..com"));        Bundle b = new Bundle();        b.putBoolean("new_window", true); //sets new window        intent.putExtras(b);        startActivity(intent);     }});builder.show();

试试这个



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

原文地址: http://outofmemory.cn/zaji/5601378.html

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

发表评论

登录后才能评论

评论列表(0条)

保存