Android对话框用法 Android开发入门之对话框简单用法
manymore13 人气:0想了解Android开发入门之对话框简单用法的相关内容吗,manymore13在本文为您仔细讲解Android对话框用法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,对话框,下面大家一起来学习吧。
本文实例讲述了Android开发入门之对话框简单用法。分享给大家供大家参考,具体如下:
注:本文只是一个学习笔记 用以记录自己学到哪了
1.获得AlertDialog的静态内部类Builder对象,由此类来创建对话框
2.通过Builder对象设置对话框的标题 按钮以及按钮响应的事件
3.调用Builder的Create()方法创建对话框
4.调用AlertDialog的show()方法显示对话框
main.xml文件
<?xml version="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程序设计有所帮助。
加载全部内容