Android开发入门之对话框简单用法_安卓软件开发教程-查字典教程网
Android开发入门之对话框简单用法
Android开发入门之对话框简单用法
发布时间:2016-12-28 来源:查字典编辑
摘要:本文实例讲述了Android开发入门之对话框简单用法。分享给大家供大家参考,具体如下:注:本文只是一个学习笔记用以记录自己学到哪了1.获得A...

本文实例讲述了Android开发入门之对话框简单用法。分享给大家供大家参考,具体如下:

注:本文只是一个学习笔记 用以记录自己学到哪了

1.获得AlertDialog的静态内部类Builder对象,由此类来创建对话框

2.通过Builder对象设置对话框的标题 按钮以及按钮响应的事件

3.调用Builder的Create()方法创建对话框

4.调用AlertDialog的show()方法显示对话框

main.xml文件

<"1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:id="@+id/MyTextView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <Button android:id="@+id/myButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="创建Alert对话框" /> </LinearLayout>

MainActivity文件

@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); myTextView = (TextView)findViewById(R.id.MyTextView); myButton = (Button)findViewById(R.id.myButton); //添加AlertDialog.Builder对象 final AlertDialog.Builder builder = new AlertDialog.Builder(this); //为activity中按钮添加按钮事件 myButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { builder.setTitle("您确定要删除此条信息"). //设置确定按钮 setPositiveButton("Yes", new OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { myTextView.setText("删除成功"); } }). //设置取消按钮 setNegativeButton("No", new OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { myTextView.setText("取消删除"); } }); //创建对话框 AlertDialog alertDialog = builder.create(); //显示对话框 alertDialog.show(); } }); } }

希望本文所述对大家Android程序设计有所帮助。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新安卓软件开发学习
    热门安卓软件开发学习
    编程开发子分类