热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用对话框——Dialog

对话框就是一般的弹出窗口,主要用来提示用户,和用户交互。创建Activity对话框使用Activity模拟对话框。这个比较简单,主要是使用Activity自带的Dialog主题。创

对话框就是一般的弹出窗口,主要用来提示用户,和用户交互。

创建Activity对话框

使用Activity模拟对话框。这个比较简单,主要是使用Activity自带的Dialog主题。

创建DialogActivity,并在AndroidManifest中注册。

改变DialogActivity的主题:

<activity
            android:theme="@android:style/Theme.Dialog"
            android:name="com.whathecode.usingdialog.DialogActivity"
            android:label="@string/title_activity_dialog" >
activity>

DialogActivity代码示例:

package com.whathecode.usingdialog;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;

public class DialogActivity extends Activity
{

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_dialog);
    }
    
    
    //用来关闭这个Activity
    public void close(View view)
    {
        finish();
    }
}

DialogActivity布局文件:

<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:padding="5dp"
    android:orientation="vertical"
    android:gravity="center_vertical|center_horizontal"
    tools:context=".DialogActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="这是基于Activity的Dialog" />
    
    <LinearLayout 
        android:layout_marginTop="10dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        
        <Button 
            android:id="@+id/confirm"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="确定"
            android:onClick="close"/>
        
        <Button 
            android:id="@+id/cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="取消"
            android:onClick="close"/>
    LinearLayout>

LinearLayout>

MainActivity代码:

package com.whathecode.usingdialog;

import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.View;

public class MainActivity extends FragmentActivity
{

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    
    public void openActivityDialog(View view)
    {
        Intent intent = new Intent(this, DialogActivity.class);
        startActivity(intent);
    }
}

运行效果:

技术分享

创建单选,多选和带进度条的对话框:

主要是使用AlertDialog类,首先通过创建AlertDialog类的实例,然后使用showDialog显示对话框。

showDialog方法的执行会引发onCreateDialog方法被调用

示例代码:

package com.whathecode.usingdialog;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Toast;

public class MainActivity extends Activity
{

    private static final int SINGLE_CHOICE_DIALOG = 0;
    private static final int MULTI_CHOICE_DIALOG = 1;
    private static final int PROGRESS_DIALOG = 2;
    protected static final int MAX_PROGRESS = 30;
    private CharSequence items[] = new String[] { "apple", "google",
            "microsoft" };
    private boolean checkedItems[] = new boolean[3];
    
    
    private Handler progressHandler;
    private int progress;
    protected ProgressDialog progressDialog;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        progressHandler = new Handler() {
            @Override
            public void handleMessage(Message msg) {
                super.handleMessage(msg);
                if (progress >= MAX_PROGRESS) {
                    progressDialog.dismiss(); //关闭progressDialog
                } else {
                    progress++;
                    
                    //进度条加1
                    progressDialog.incrementProgressBy(1);
                    //只要当前进度小于总进度,每个100毫秒发送一次消息
                    progressHandler.sendEmptyMessageDelayed(0, 100);
                }
            }
        };
    }

    public void openActivityDialog(View view)
    {
        Intent intent = new Intent(this, DialogActivity.class);
        startActivity(intent);
    }

    //显示单选对话框
    public void openSinglechoiceDialog(View view)
    {
        showDialog(SINGLE_CHOICE_DIALOG);
    }

    //显示多选对话框
    public void openMultichoiceDialog(View view)
    {
        showDialog(MULTI_CHOICE_DIALOG);
    }
    
    //显示进度条对话框
    public void openProgressDialog(View view)
    {
        showDialog(PROGRESS_DIALOG);
        progress = 0;
        progressDialog.setProgress(0);
        progressHandler.sendEmptyMessage(0);
    }

    @Override
    @Deprecated
    protected Dialog onCreateDialog(int id)
    {
        switch (id)
        {
        case SINGLE_CHOICE_DIALOG:
            return createSingleChoiceDialog();

        case MULTI_CHOICE_DIALOG:
            return createMultichoiceDialog();
            
        case PROGRESS_DIALOG:
            return createProgressDialog();

        default:
            break;
        }
        return null;
    }
    
    
    /**
     * 创建单选对话框
     * 
     */
    public Dialog createSingleChoiceDialog()
    {
        return new AlertDialog.Builder(this)
                .setTitle("单选对话框")  //设置对话框标题
                .setNegativeButton("取消", null)  //设置取消按钮钮
                .setPositiveButton("确定", null) //设置确定按
                .setSingleChoiceItems(items, 0,    //绑定数据
                        new DialogInterface.OnClickListener()
                        {

                            @Override
                            public void onClick(DialogInterface dialog,
                                    int which)
                            {
                                Toast.makeText(getBaseContext(),
                                        items[which].toString(),
                                        Toast.LENGTH_SHORT).show();
                            }
                        }).create();
    }

    /**
     * 创建多选对话框
     * 
     */
    public Dialog createMultichoiceDialog()
    {
        return new AlertDialog.Builder(this)
                .setTitle("多选对话框")  //设置对话框标题
                .setNegativeButton("取消", null)  //设置取消按钮
                .setPositiveButton("确定", null) //设置确定按钮
                .setMultiChoiceItems(items, checkedItems,  //绑定数据
                        new DialogInterface.OnMultiChoiceClickListener()
                        {

                            @Override
                            public void onClick(DialogInterface dialog,
                                    int which, boolean isChecked)
                            {
                                Toast.makeText(
                                        getBaseContext(),
                                        isChecked ? items[which] + " check"
                                                : items[which] + " uncheck",
                                        Toast.LENGTH_SHORT).show();
                            }
                        }).create();
    }
    
    /**
     * 创建带进度条的对话框
     * 
     */
    public Dialog createProgressDialog()
    {
        progressDialog = new ProgressDialog(this);
        progressDialog.setTitle("下载对话框");
        progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        progressDialog.setMax(MAX_PROGRESS);
        progressDialog.setButton(DialogInterface.BUTTON_POSITIVE, "确定", new DialogInterface.OnClickListener()
        {
            
            @Override
            public void onClick(DialogInterface dialog, int which)
            {
                
            }
        });
        progressDialog.setButton(DialogInterface.BUTTON_NEGATIVE, "取消", new DialogInterface.OnClickListener()
        {
            
            @Override
            public void onClick(DialogInterface dialog, int which)
            {
                
            }
        });

        return progressDialog;
    }
}

运行效果:

技术分享

这里比较难理解还是ProgressDialog,因为它需要增加进度。这里我们通过向Activity线程发送消息,

从而能够使用progressDialog.incrementProgressBy(1)方法递增进度条。

使用对话框 —— Dialog


推荐阅读
  • 在项目部署后,Node.js 进程可能会遇到不可预见的错误并崩溃。为了及时通知开发人员进行问题排查,我们可以利用 nodemailer 插件来发送邮件提醒。本文将详细介绍如何配置和使用 nodemailer 实现这一功能。 ... [详细]
  • 本文探讨了在使用Selenium进行自动化测试时,由于webdriver对象实例化位置不同而导致浏览器闪退的问题,并提供了详细的代码示例和解决方案。 ... [详细]
  • 本文详细探讨了JavaScript中的作用域链和闭包机制,解释了它们的工作原理及其在实际编程中的应用。通过具体的代码示例,帮助读者更好地理解和掌握这些概念。 ... [详细]
  • C#设计模式学习笔记:观察者模式解析
    本文将探讨观察者模式的基本概念、应用场景及其在C#中的实现方法。通过借鉴《Head First Design Patterns》和维基百科等资源,详细介绍该模式的工作原理,并提供具体代码示例。 ... [详细]
  • 利用Selenium与ChromeDriver实现豆瓣网页全屏截图
    本文介绍了一种使用Selenium和ChromeDriver结合Python代码,轻松实现对豆瓣网站进行完整页面截图的方法。该方法不仅简单易行,而且解决了新版Selenium不再支持PhantomJS的问题。 ... [详细]
  • 解决TensorFlow CPU版本安装中的依赖问题
    本文记录了在安装CPU版本的TensorFlow过程中遇到的依赖问题及解决方案,特别是numpy版本不匹配和动态链接库(DLL)错误。通过详细的步骤说明和专业建议,帮助读者顺利安装并使用TensorFlow。 ... [详细]
  • 算法题解析:最短无序连续子数组
    本题探讨如何通过单调栈的方法,找到一个数组中最短的需要排序的连续子数组。通过正向和反向遍历,分别使用单调递增栈和单调递减栈来确定边界索引,从而定位出最小的无序子数组。 ... [详细]
  • 本文深入探讨了线性代数中向量的线性关系,包括线性相关性和极大线性无关组的概念。通过分析线性方程组和向量组的秩,帮助读者理解这些概念在实际问题中的应用。 ... [详细]
  • 查找最小值的操作是很简单的,只需要从根节点递归的遍历到左子树节点即可。当遍历到节点的左孩子为NULL时,则这个节点就是树的最小值。上面的树中,从根节点20开始,递归遍历左子 ... [详细]
  • 在使用STM32Cube进行定时器配置时,有时会遇到延时不准的问题。本文探讨了可能导致延时不准确的原因,并提供了解决方法和预防措施。 ... [详细]
  • 深入理解Lucene搜索机制
    本文旨在帮助读者全面掌握Lucene搜索的编写步骤、核心API及其应用。通过详细解析Lucene的基本查询和查询解析器的使用方法,结合架构图和代码示例,带领读者深入了解Lucene搜索的工作流程。 ... [详细]
  • Python 内存管理机制详解
    本文深入探讨了Python的内存管理机制,涵盖了垃圾回收、引用计数和内存池机制。通过具体示例和专业解释,帮助读者理解Python如何高效地管理和释放内存资源。 ... [详细]
  • Appium + Java 自动化测试中处理页面空白区域点击问题
    在进行移动应用自动化测试时,有时会遇到某些页面没有返回按钮,只能通过点击空白区域返回的情况。本文将探讨如何在Appium + Java环境中有效解决此类问题,并提供详细的解决方案。 ... [详细]
  • 如何清除Chrome浏览器地址栏的特定历史记录
    在使用Chrome浏览器时,你可能会发现地址栏保存了大量浏览记录。有时你可能希望删除某些特定的历史记录而不影响其他数据。本文将详细介绍如何单独删除地址栏中的特定记录以及批量清除所有历史记录的方法。 ... [详细]
  • 嵌入式开发环境搭建与文件传输指南
    本文详细介绍了如何为嵌入式应用开发搭建必要的软硬件环境,并提供了通过串口和网线两种方式将文件传输到开发板的具体步骤。适合Linux开发初学者参考。 ... [详细]
author-avatar
mobiledu2502861463
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有