Android编程自定义扁平化对话框示例

发布时间 - 2026-01-11 02:06:56    点击率:

本文实例讲述了Android编程自定义扁平化对话框。分享给大家供大家参考,具体如下:

平时我们开发的大多数的Android、iOS的APP,它们的风格都是拟物化设计。如Android 4.X、iOS 7、WP8采用的是扁平化设计,可以看出扁平化设计是未来UI设计的趋势。其实扁平化设计要比拟物化设计要简单一点,扁平化设计更加的简约,给人视觉上更加舒服。

Shamoo想到在Android平台上弄一个扁平化的对话框。参考过一篇帖子,然后改了一下。

这个Demo比较简单,首先是一个dialog的布局文件,这个dialog的布局要实例化成对话框可以通过AlertDialog.Builder的setView方法,将LayoutInflater实例化的dialog布局设置对话框具体显示内容。效果图如下:

下面直接贴代码

DialogWindows.Java

package com.example.dialogwindows;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.Toast;
public class DialogWindows extends Activity {
  private Button button;
  private View dialogView;
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    button = (Button) findViewById(R.id.btn);
    button.setOnClickListener(new OnClickListener() {
      public void onClick(View v) {
        Builder builder = myBuilder(DialogWindows.this);
        final AlertDialog dialog = builder.show();
        //点击屏幕外侧,dialog不消失
        dialog.setCanceledOnTouchOutside(false);
        Button btnOK = (Button) dialogView.findViewById(R.id.btn_ok);
        btnOK.setOnClickListener(new OnClickListener() {
          public void onClick(View v) {
            Toast.makeText(DialogWindows.this, "你点击了确定按钮", Toast.LENGTH_SHORT).show();
            dialog.dismiss();
          }
        });
        Button btnCancel = (Button) dialogView.findViewById(R.id.btn_cancel);
        btnCancel.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
          Toast.makeText(DialogWindows.this, "你点击了取消按钮", Toast.LENGTH_SHORT).show();
          dialog.dismiss();
        }
      });
        ImageButton customviewtvimgCancel = (ImageButton) dialogView.findViewById(R.id.btn_exit);
        customviewtvimgCancel.setOnClickListener(new OnClickListener() {
          public void onClick(View v) {
            Toast.makeText(DialogWindows.this, "你点击了退出按钮", Toast.LENGTH_SHORT).show();
            dialog.dismiss();
          }
        });
      }
    });
  }
  protected Builder myBuilder(Context context) {
    LayoutInflater inflater = getLayoutInflater();
    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    dialogView = inflater.inflate(R.layout.dialog, null);
    return builder.setView(dialogView);
  }
}

dialog.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <!-- 标题栏 -->
  <RelativeLayout
    android:id="@+id/dialog_title"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#1A94F9" >
    <TextView
      android:id="@+id/tv_title"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerVertical="true"
      android:padding="10dp"
      android:text="@string/about"
      android:textColor="#000000" />
    <ImageButton
      android:id="@+id/btn_exit"
      android:layout_width="40dp"
      android:layout_height="40dp"
      android:layout_alignParentRight="true"
      android:layout_centerVertical="true"
      android:background="@drawable/canceltor" />
  </RelativeLayout>
  <!-- 显示的内容 -->
  <LinearLayout
    android:id="@+id/dialog_msg"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_below="@id/dialog_title"
    android:padding="20dp" >
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/author"
      android:textColor="#ffffff" />
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:linksClickable="true"
      android:text="@string/blog"
      android:textColor="#ffffff" />
  </LinearLayout>
  <!-- 底部按钮 -->
  <LinearLayout
    android:id="@+id/customviewlayLink"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/dialog_msg"
    android:orientation="horizontal"
    android:paddingLeft="20dp"
    android:paddingRight="20dp"
    android:paddingBottom="20dp" >
    <Button
      android:id="@+id/btn_ok"
      android:layout_width="fill_parent"
      android:layout_height="40dp"
      android:background="@drawable/linkbtnbged"
      android:linksClickable="true"
      android:layout_weight="1"
      android:layout_marginRight="10dp"
      android:text="@string/btn_ok" />
    <Button
      android:id="@+id/btn_cancel"
      android:layout_width="fill_parent"
      android:layout_height="40dp"
      android:linksClickable="true"
      android:background="@drawable/linkbtnbged"
      android:text="@string/btn_cancel"
      android:layout_marginLeft="10dp"
      android:layout_weight="1" />
  </LinearLayout>
</RelativeLayout>

main.xml

<RelativeLayout 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" >
  <Button
    android:id="@+id/btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/show_dialog" />
</RelativeLayout>

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。


# Android  # 对话框  # Android自定义EditText实现登录界面  # Android取消EditText自动获取焦点默认行为  # Android控件系列之EditText使用方法  # android同时控制EditText输入字符个数和禁止特殊字符输入的方法  # Android中EditText实现不可编辑解决办法  # Android定制自己的EditText轻松改变底线颜色  # Android中EditText显示明文与密码的两种方式  # Android更改EditText下划线颜色样式的方法  # android基础教程之android的listview与edittext冲突解决方法  # Android EditText实现扁平化的登录界面  # 扁平化  # 的是  # 都是  # 是一个  # 进阶  # 相关内容  # 感兴趣  # 可以通过  # 给人  # 给大家  # 自定义  # 要比  # 可以看出  # 更多关于  # 改了  # 解决方法  # 所述  # 程序设计  # 标题栏 


相关栏目: 【 网站优化151355 】 【 网络推广146373 】 【 网络技术251813 】 【 AI营销90571


相关推荐: JavaScript如何实现倒计时_时间函数如何精确控制  教你用AI将一段旋律扩展成一首完整的曲子  ,怎么在广州志愿者网站注册?  如何快速搭建高效香港服务器网站?  如何在局域网内绑定自建网站域名?  Java类加载基本过程详细介绍  Laravel怎么发送邮件_Laravel Mail类SMTP配置教程  如何快速完成中国万网建站详细流程?  HTML透明颜色代码怎么让图片透明_给img元素加透明色的技巧【方法】  如何在IIS7上新建站点并设置安全权限?  阿里云网站搭建费用解析:服务器价格与建站成本优化指南  Thinkphp 中 distinct 的用法解析  HTML5段落标签p和br怎么选_文本排版常用标签对比【解答】  Laravel PHP版本要求一览_Laravel各版本环境要求对照  Laravel用户密码怎么加密_Laravel Hash门面使用教程  成都网站制作公司哪家好,四川省职工服务网是做什么用?  如何快速搭建FTP站点实现文件共享?  如何构建满足综合性能需求的优质建站方案?  Laravel Pest测试框架怎么用_从PHPUnit转向Pest的Laravel测试教程  如何用AI帮你把自己的生活经历写成一个有趣的故事?  ,在苏州找工作,上哪个网站比较好?  Laravel如何实现登录错误次数限制_Laravel自带LoginThrottles限流配置【方法】  如何在Windows环境下新建FTP站点并设置权限?  JavaScript如何实现路由_前端路由原理是什么  Laravel如何使用缓存系统提升性能_Laravel缓存驱动和应用优化方案  如何在沈阳梯子盘古建站优化SEO排名与功能模块?  Laravel怎么使用Session存储数据_Laravel会话管理与自定义驱动配置【详解】  米侠浏览器网页图片不显示怎么办 米侠图片加载修复  标题:Vue + Vuex + JWT 身份认证的正确实践与常见误区解析  如何在橙子建站上传落地页?操作指南详解  Laravel如何实现数据导出到PDF_Laravel使用snappy生成网页快照PDF【方案】  Laravel事件监听器怎么写_Laravel Event和Listener使用教程  Laravel如何使用Contracts(契约)进行编程_Laravel契约接口与依赖反转  Claude怎样写约束型提示词_Claude约束提示词写法【教程】  Win11应用商店下载慢怎么办 Win11更改DNS提速下载【修复】  网站制作大概多少钱一个,做一个平台网站大概多少钱?  html5源代码发行怎么设置权限_访问权限控制方法与实践【指南】  javascript中闭包概念与用法深入理解  Laravel如何使用Eloquent进行子查询  通义万相免费版怎么用_通义万相免费版使用方法详细指南【教程】  免费网站制作appp,免费制作app哪个平台好?  如何在云指建站中生成FTP站点?  laravel怎么实现图片的压缩和裁剪_laravel图片压缩与裁剪方法  Laravel怎么写单元测试_PHPUnit在Laravel项目中的基础测试入门  Laravel项目如何进行性能优化_Laravel应用性能分析与优化技巧大全  香港服务器选型指南:免备案配置与高效建站方案解析  Laravel如何使用Laravel Vite编译前端_Laravel10以上版本前端静态资源管理【教程】  如何在企业微信快速生成手机电脑官网?  如何在云服务器上快速搭建个人网站?  Edge浏览器提示“由你的组织管理”怎么解决_去除浏览器托管提示【修复】