Android Alertdialog(实现警告对话框)

作者:潘侯爷 时间:2022-03-02 10:57:54 

在Android开发中,我们经常会需要在Android界面上弹出一些对话框,比如询问用户或者让用户选择。这些功能我们叫它Android Dialog对话框,AlertDialog实现方法为建造者模式。下面我们模拟卸载应用程序时弹出的最为普通的警告对话框,如下图:
Android Alertdialog(实现警告对话框)

layout布局界面代码示例:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="match_parent"
 android:layout_height="match_parent">
 <Button
   android:text="卸载"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:onClick="show"
   android:id="@+id/button" />
</LinearLayout>

Java实现代码:


import android.content.DialogInterface;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Toast;
/**
* Created by panchengjia on 2016/11/21.
*/
public class AlertDialogDemo extends AppCompatActivity {
 @Override
 protected void onCreate(@Nullable Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.alterdialog);
 }
 public void show(View v){
   //实例化建造者
   AlertDialog.Builder builder = new AlertDialog.Builder(this);
   //设置警告对话框的标题
   builder.setTitle("卸载");
   //设置警告显示的图片
//    builder.setIcon(android.R.drawable.ic_dialog_alert);
   //设置警告对话框的提示信息
   builder.setMessage("确定卸载吗");
   //设置”正面”按钮,及点击事件
   builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
       Toast.makeText(AlertDialogDemo.this,"点击了确定按钮",Toast.LENGTH_SHORT).show();
     }
   });
   //设置“反面”按钮,及点击事件
   builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
       Toast.makeText(AlertDialogDemo.this,"点击了取消按钮",Toast.LENGTH_SHORT).show();
     }
   });
   //设置“中立”按钮,及点击事件
   builder.setNeutralButton("等等看吧", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
       Toast.makeText(AlertDialogDemo.this,"点击了中立按钮",Toast.LENGTH_SHORT).show();
     }
   });
   //显示对话框
   builder.show();
 }
}
标签:android,alertdialog
0
投稿

猜你喜欢

  • 详解JAVA中的OPTIONAL

    2022-08-22 17:09:04
  • Java实现聊天机器人完善版

    2022-10-07 09:31:11
  • Java中instanceof关键字的用法总结

    2022-12-11 15:52:27
  • springboot2.x只需两步快速整合log4j2的方法

    2023-06-06 20:41:21
  • springboot集成与使用Sentinel的方法

    2023-08-31 11:22:30
  • Java Boolean 初始化方式详解

    2021-10-09 15:20:07
  • Android通过代码控制ListView上下滚动的方法

    2022-06-29 03:07:57
  • 细说C#中的枚举:转换、标志和属性

    2021-07-10 06:01:05
  • volatile与happens-before的关系与内存一致性错误

    2021-12-13 20:25:37
  • Spring Boot Logback配置日志过程解析

    2022-12-09 18:08:06
  • 在Android中动态添加Panel框架的实现代码

    2022-01-17 23:17:07
  • 详解Java代码常见优化方案

    2023-11-29 03:13:04
  • java高并发之线程的基本操作详解

    2023-12-04 13:35:25
  • c#实现输出本月的月历

    2023-07-18 19:41:33
  • springboot与mybatis整合实例详解(完美融合)

    2023-01-14 09:25:33
  • 一文带你了解SpringBoot中常用注解的原理和使用

    2022-07-22 14:27:43
  • 单点登录的三种方式和JWT的介绍与使用

    2023-05-19 22:10:59
  • 详解AOP与Filter拦截请求打印日志实用例子

    2021-09-26 22:03:10
  • Android Studio和阿里云数据库实现一个远程聊天程序

    2023-06-14 21:09:16
  • 简单了解Spring beanfactory循环依赖命名重复属性

    2023-10-27 19:39:14
  • asp之家 软件编程 m.aspxhome.com