Android一个简单的警告框,带标题图标按钮的代码
Posted 代码老年人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android一个简单的警告框,带标题图标按钮的代码相关的知识,希望对你有一定的参考价值。
工作之余,将内容过程比较常用的内容做个珍藏,下面内容是关于android一个简单的警告框,带标题、图标、按钮的内容,应该是对大伙有些用。
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Title");
alertDialog.setMessage("Message");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();
以上是关于Android一个简单的警告框,带标题图标按钮的代码的主要内容,如果未能解决你的问题,请参考以下文章
Android 带清除功能的输入框控件ClearEditText