下面哪条语句可以构造正确的对话框()。 A.AlertDialog dialog=new AlertDialog(context);B.AlertDialog.Builder builder=new AlertDialog.Builder(context);C.ProgressDialog dialog=new ProgressDialog();D.ProgressDialog.Builder builder=new ProgressDialog.Builder(context);
下面哪条语句可以构造正确的对话框()。
A.AlertDialog dialog=new AlertDialog(context);
B.AlertDialog.Builder builder=new AlertDialog.Builder(context);
C.ProgressDialog dialog=new ProgressDialog();
D.ProgressDialog.Builder builder=new ProgressDialog.Builder(context);
相关考题:
假定在窗体上建立一个通用对话框,其名称为ConmlonDialogl,用下面的语句可以建立一个对话框: CommonDialogl. Action=1 与该语句等价的语句是 ______ 。A.CommonDialogl.ShowOpenB.CommonDialogl.ShowSaveC.CommonDialogl.ShowColorD.CommonDialogl.ShowFont
下面哪条语句可以返回访问者的IP地址()。A.Request.ServerVariablesB.Request.ServerVariablesC.Request.ClientCertificateD.Request.ClientCertificate
假定在窗体上建立一个通用对话框,其名称为CommonDialogl,用下面的语句可以建立一个对话框: CommonDialogl.Action=1 与该语句等价的语句是 ______。A.CommonDialogl.ShowOpenB.CommonDialogl.ShowSaveC.CommonDialogl.ShowFontD.CommonDialogl.ShowColor
假定在窗体上建立一个通用对话框,其名称为CommonDialog1,用下面的语句可以建立一个对话框: CommonDialog1.Action=1 与该语句等价的语句是 ______。A.CommonDialog1.ShowOvenB.Commofidialog1.ShowSaveC.CommonDialog1.ShowColorD.CommonDialog1.ShowFont
在窗体上建立一个通用对话框,名称为 CommonDialog1,用下面的语句可以建立一个对话框,CommonDialog1.Action=2 与该语句等价的语句是():A.CommonDialog1.ShowOpenB.CommonDialog1.ShowSaveC.CommonDialog1.ShowColorD.CommonDialog1.ShowFont
下面哪条语句可以创建一个显示文字为“开始”的标签()。A.JTextField b=new JTextField(“开始”);B.JButton b=new JButton(“开始”);C.JLabel b=new JLabel(“开始”);D.JCheckbox b=new JCheckbox(“开始”);
【多选题】使用this调用的构造方法,下面的说法正确的是?A.使用this调用构造方法的格式为this([参数1,参数2…])B.可以在构造方法中使用this调用其他的构造方法C.使用this调用其他构造方法的语句必须放在第一行D.在重载的构造方法中,不能使用this互相调用