android的弹出框 -(一)--AlertDialog,时间弹出框DatePickerDialog 和进度条弹出框showProgressDialog

本文介绍了Android中三种常见的弹出框:AlertDialog用于展示普通信息,DatePickerDialog用于选择日期,ProgressDialog用于显示进度条。详细讲解了它们的创建和使用方法,包括设置标题、内容、按钮等,并提供了XML布局文件的示例。下篇将重点讨论自定义弹出框和事件处理。
摘要由CSDN通过智能技术生成

这里介绍三种弹出框android的弹出框AlertDialog,时间弹出框DatePickerDialog 和进度条弹出框showProgressDialog--我将在下一篇介绍自定义弹出框


这里我们我们同一个layout.xml来写按钮事,app中肯定是少不了与用户交互的各种dialog,所以我们可以用谷歌的工程师包装好的方法来做这个弹出框 android:onClick="(自定义的方法名)Gress"这个我们只需要在MainActivity。java中实现这个方法就行。例如
public class MainActivity extends Activity {


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void Gress view) {
实现方法的代码
}
}

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.m_6dialog.MainActivity" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="Bt1"
        android:text="普通弹出框" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="Bt2"
        android:text="时间弹出框" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="Bt3"
        android:text="进度条弹出框" />

    <
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值