Android AlertDialog 6种不同效果使用方法

2024-09-07 05:32

本文主要是介绍Android AlertDialog 6种不同效果使用方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


摘自《疯狂Android讲义 第3版》


package shortcut.song.com.myapplication;import android.content.Context;
import android.content.DialogInterface;
import android.database.DataSetObserver;
import android.icu.text.SimpleDateFormat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.widget.Button;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.app.ProgressDialog;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.NumberPicker;
import android.widget.RatingBar;
import android.widget.Spinner;
import android.widget.SpinnerAdapter;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.TimePicker;import java.util.Calendar;
import java.util.Date;public class AlertDialogActivity extends AppCompatActivity implements View.OnClickListener{Button mButton1;Button mButton2;Button mButton3;Button mButton4;Button mButton5;Button mButton6;@Override
    protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_alert_dialog);mButton1 = (Button)findViewById(R.id.button_alert1);mButton2 = (Button)findViewById(R.id.button_alert2);mButton3 = (Button)findViewById(R.id.button_alert3);mButton4 = (Button)findViewById(R.id.button_alert4);mButton5 = (Button)findViewById(R.id.button_alert5);mButton6 = (Button)findViewById(R.id.button_alert6);mButton1.setOnClickListener(this);mButton2.setOnClickListener(this);mButton3.setOnClickListener(this);mButton4.setOnClickListener(this);mButton5.setOnClickListener(this);mButton6.setOnClickListener(this);@Override
    public void onClick(View v) {switch(v.getId()){case R.id.button_alert1:Builder builder = new AlertDialog.Builder(this);builder.setIcon(R.drawable.alert_dialog_icon);builder.setTitle("AlertDialog Title");builder.setMessage("AlertDialog Message");builder.setPositiveButton("Ok", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {Toast.makeText(AlertDialogActivity.this, "Ok button",Toast.LENGTH_SHORT).show();}});builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {Toast.makeText(AlertDialogActivity.this, "Cancel Button", Toast.LENGTH_SHORT).show();}});builder.show();break;case R.id.button_alert2:Builder builder2 = new AlertDialog.Builder(this);builder2.setIcon(R.drawable.alert_dialog_icon);builder2.setTitle("System Dialog");builder2.setMessage("This is System Alert Dialog!");builder2.setPositiveButton("Ok", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {}});builder2.setNeutralButton("Dital", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {}});builder2.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {}});builder2.show();break;case R.id.button_alert3:LayoutInflater inflater = LayoutInflater.from(this);//LayoutInflater inflater = getLayoutInflater();
                final View mAlertEnterView = inflater.inflate(R.layout.alertdialog_layout, null);final EditText userEdit = (EditText)mAlertEnterView.findViewById(R.id.user_edit);final EditText passwdEdit = (EditText)mAlertEnterView.findViewById(R.id.passwd_edit);new AlertDialog.Builder(this).setTitle("Login").setIcon(R.drawable.alert_dialog_icon).setMessage("Please input user and passwd!").setView(mAlertEnterView).setPositiveButton("Ok", new DialogInterface.OnClickListener() {@Override
                            public void onClick(DialogInterface dialog, int which) {Toast.makeText(AlertDialogActivity.this, "User:"+userEdit.getText().toString()+"  Passwd:"+ passwdEdit.getText().toString(),Toast.LENGTH_SHORT).show();}}).setNeutralButton("MID", new DialogInterface.OnClickListener() {@Override
                            public void onClick(DialogInterface dialog, int which) {}}).setNegativeButton("Cancel", new DialogInterface.OnClickListener() {@Override
                            public void onClick(DialogInterface dialog, int which) {}}).show();break;case R.id.button_alert4://进度条 对话框
                ProgressDialog progress = new ProgressDialog(this);progress.setTitle("Progress ...");progress.setMessage("Copying ...");//progress.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);//水平进度条
                progress.setProgressStyle(ProgressDialog.STYLE_SPINNER); //圆圈
                progress.show();progress.setMax(100);progress.setProgress(50);break;case R.id.button_alert5:String choices [] = {"Red", "Green","Blue","Yellow"};AlertDialog.Builder mChoicesBuilder = new AlertDialog.Builder(this);mChoicesBuilder.setIcon(R.drawable.alert_dialog_icon);mChoicesBuilder.setTitle("CCC Seletect");//mChoicesBuilder.setMessage("Please checik.");//不能设置Message 否则Choices Items 显示不出来。
                mChoicesBuilder.setSingleChoiceItems(choices, 1, new DialogInterface.OnClickListener(){@Override
                    public void onClick(DialogInterface dialog, int which) {switch ( which ){case 0:break;case 1:break;case 2:break;default:break;}}});mChoicesBuilder.show();break;case R.id.button_alert6:boolean checked[]={false, true, true, false};AlertDialog.Builder mMulitChoice = new AlertDialog.Builder(this);mMulitChoice.setIcon(R.drawable.alert_dialog_icon);mMulitChoice.setTitle("Color Choices");//mMulitChoice.setMessage("") //多选对话框不能调Message,否则多选项显示不出来
                mMulitChoice.setMultiChoiceItems(new String[]{"A", "b", "c", "d"}, checked, new DialogInterface.OnMultiChoiceClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which, boolean isChecked) {}});mMulitChoice.setPositiveButton("Ok", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {}});mMulitChoice.setNeutralButton("Ditail", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {}});mMulitChoice.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {@Override
                    public void onClick(DialogInterface dialog, int which) {}});mMulitChoice.show();break;default:break;}}
}
 
 
 
Layout文件内容
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_alert_dialog"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    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="shortcut.song.com.myapplication.AlertDialogActivity"><Button
        android:id="@+id/button_alert1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Alert1"
        /><Button
        android:id="@+id/button_alert2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/button_alert1"
        android:text="Alert2"
        /><Button
        android:id="@+id/button_alert3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/button_alert2"
        android:text="Alert3"
        /><Button
        android:id="@+id/button_alert4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/button_alert3"
        android:text="Alert4"
        /><Button
        android:id="@+id/button_alert5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/button_alert4"
        android:text="Alert5"
        /><Button
        android:id="@+id/button_alert6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/button_alert5"
        android:text="Alert6"
        />
</RelativeLayout>
 
 
 
 
Alert1:

 
 
Alert2:

 
Alert2:

 
Alert4:

 
Alert5:

 
Alert6:

这篇关于Android AlertDialog 6种不同效果使用方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1144186

相关文章

Mybatis官方生成器的使用方式

《Mybatis官方生成器的使用方式》本文详细介绍了MyBatisGenerator(MBG)的使用方法,通过实际代码示例展示了如何配置Maven插件来自动化生成MyBatis项目所需的实体类、Map... 目录1. MyBATis Generator 简介2. MyBatis Generator 的功能3

Python中使用defaultdict和Counter的方法

《Python中使用defaultdict和Counter的方法》本文深入探讨了Python中的两个强大工具——defaultdict和Counter,并详细介绍了它们的工作原理、应用场景以及在实际编... 目录引言defaultdict的深入应用什么是defaultdictdefaultdict的工作原理

使用Python进行文件读写操作的基本方法

《使用Python进行文件读写操作的基本方法》今天的内容来介绍Python中进行文件读写操作的方法,这在学习Python时是必不可少的技术点,希望可以帮助到正在学习python的小伙伴,以下是Pyth... 目录一、文件读取:二、文件写入:三、文件追加:四、文件读写的二进制模式:五、使用 json 模块读写

Python使用qrcode库实现生成二维码的操作指南

《Python使用qrcode库实现生成二维码的操作指南》二维码是一种广泛使用的二维条码,因其高效的数据存储能力和易于扫描的特点,广泛应用于支付、身份验证、营销推广等领域,Pythonqrcode库是... 目录一、安装 python qrcode 库二、基本使用方法1. 生成简单二维码2. 生成带 Log

Python如何使用seleniumwire接管Chrome查看控制台中参数

《Python如何使用seleniumwire接管Chrome查看控制台中参数》文章介绍了如何使用Python的seleniumwire库来接管Chrome浏览器,并通过控制台查看接口参数,本文给大家... 1、cmd打开控制台,启动谷歌并制定端口号,找不到文件的加环境变量chrome.exe --rem

Oracle数据库使用 listagg去重删除重复数据的方法汇总

《Oracle数据库使用listagg去重删除重复数据的方法汇总》文章介绍了在Oracle数据库中使用LISTAGG和XMLAGG函数进行字符串聚合并去重的方法,包括去重聚合、使用XML解析和CLO... 目录案例表第一种:使用wm_concat() + distinct去重聚合第二种:使用listagg,

使用C#代码计算数学表达式实例

《使用C#代码计算数学表达式实例》这段文字主要讲述了如何使用C#语言来计算数学表达式,该程序通过使用Dictionary保存变量,定义了运算符优先级,并实现了EvaluateExpression方法来... 目录C#代码计算数学表达式该方法很长,因此我将分段描述下面的代码片段显示了下一步以下代码显示该方法如

Go语言使用Buffer实现高性能处理字节和字符

《Go语言使用Buffer实现高性能处理字节和字符》在Go中,bytes.Buffer是一个非常高效的类型,用于处理字节数据的读写操作,本文将详细介绍一下如何使用Buffer实现高性能处理字节和... 目录1. bytes.Buffer 的基本用法1.1. 创建和初始化 Buffer1.2. 使用 Writ

Java后端接口中提取请求头中的Cookie和Token的方法

《Java后端接口中提取请求头中的Cookie和Token的方法》在现代Web开发中,HTTP请求头(Header)是客户端与服务器之间传递信息的重要方式之一,本文将详细介绍如何在Java后端(以Sp... 目录引言1. 背景1.1 什么是 HTTP 请求头?1.2 为什么需要提取请求头?2. 使用 Spr

redis-cli命令行工具的使用小结

《redis-cli命令行工具的使用小结》redis-cli是Redis的命令行客户端,支持多种参数用于连接、操作和管理Redis数据库,本文给大家介绍redis-cli命令行工具的使用小结,感兴趣的... 目录基本连接参数基本连接方式连接远程服务器带密码连接操作与格式参数-r参数重复执行命令-i参数指定命