AlertDialog可以使用new关键字创建AlertDialog的实例()
举一反三
- AlertDialog类可以通过new关键字创建对象。
- AlertDialog对话框能够直接通过new关键字创建对象
- 创建AlertDialog对话框对象的方式是new AlertDialog()。
- 关于AlertDialog描述错误的是() A: show()方法只显示对话框 B: AlertDialog.Builder的create()和show()方法都返回AlertDialog对象 C: AlertDialog不能直接用new关键字构建对象,而必须使用其内部类Builder D: AlertDialog对象直接调用create()方法创建并显示对话框
- 简述使用AlertDialog创建对话框步骤。 A: 创建AlertDialog.Builder对象 B: 调用定义并实例化创建器 C: 调用AlertDialog.Builder的方法为对话框设置图标、标题、内容等 D: 调用AlertDialog.Builder的creat()方法创建AlertDialog对话框 E: 调用AlertDialog的show()方法显示对话框