创建如下自定义对话框:

JAVA代码

LayoutInflater li = LayoutInflater.from(TagActivity. this);  //NOTE
final View TestView = li.inflate(R.layout.tag_dialog, null);

dialog = 
new Dialog(TagActivity.
this, R.style.dialog);

dialog.setContentView(TestView);

dialog.setCancelable(
true);

dialog.show();

R.layout.tag_dialog如下

<?xml version=
"1.0"
 encoding=
"utf-8"
?>


<LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"
 android:layout_width=
"match_parent"
 android:layout_height=
"match_parent"
 android:orientation=
"vertical"
>

  
<LinearLayout android:layout_height=
"wrap_content"
 android:layout_width=
"fill_parent"
>

    
<TextView android:id=
"@+id/title"
 android:layout_height=
"wrap_content"
 android:layout_width=
"fill_parent"
 android:gravity=
"center"
 android:textColor=
"@color/white"
 android:paddingTop=
"15dp"
></TextView>

  
</LinearLayout>

  
<LinearLayout android:layout_width=
"200dp"
 android:layout_height=
"200dp"
 android:orientation=
"vertical"
 android:paddingLeft=
"10dp"
 android:paddingRight=
"10dp"
 android:paddingTop=
"10dp"
>

    
<EditText android:id=
"@+id/name"
 android:layout_width=
"fill_parent"
 android:layout_height=
"wrap_content"
 android:background=
"@color/transparent"
 android:textColor=
"@color/white"
 android:hint=
"输入消息内容"
 android:textColorHint=
"@color/white"
></EditText>

  
</LinearLayout>

  
<LinearLayout android:layout_width=
"fill_parent"
 android:layout_height=
"wrap_content"
 android:orientation=
"horizontal"
 android:layout_marginBottom=
"10dp"
>

    
<RelativeLayout android:layout_width=
"fill_parent"
 android:layout_height=
"wrap_content"
 android:layout_weight=
"1"
>

      
<ImageButton android:id=
"@+id/sure"
 android:layout_width=
"wrap_content"
 android:layout_height=
"wrap_content"
 android:src=
"@drawable/sure"
 android:background=
"@drawable/btn_click_background"
 android:layout_centerHorizontal=
"true"
></ImageButton>

    
</RelativeLayout>

    
<RelativeLayout android:layout_width=
"fill_parent"
 android:layout_height=
"wrap_content"
 android:layout_weight=
"1"
>

      
<ImageButton android:id=
"@+id/cancel"
 android:layout_width=
"wrap_content"
 android:layout_height=
"wrap_content"
 android:src=
"@drawable/cancel"
 android:background=
"@drawable/btn_click_background"
 android:layout_centerHorizontal=
"true"
></ImageButton>

    
</RelativeLayout>

  
</LinearLayout>


</LinearLayout>

R.style.dialog文件如下

<!-- 下面是对话框对应的style -->


<style name=
"dialog"
 parent=
"@android:style/Theme.Dialog"
>

  
<item name=
"android:windowFrame"
>@null
</item>

  
<item name=
"android:windowIsFloating"
>true
</item>

  
<item name=
"android:windowIsTranslucent"
>true
</item>

  
<item name=
"android:windowNoTitle"
>true
</item>

  
<!--<item name="android:background">@android:color/transparent</item>-->

  
<item name=
"android:background"
>@android:color
/transparent
</item>

  
<item name=
"android:windowBackground"
>@drawable
/dialog_bg
</item>

  
<item name=
"android:backgroundDimEnabled"
>true
</item>

  
<item name=
"android:backgroundDimAmount"
>0.6
</item>

  
<item name=
"android:windowFullscreen"
>true
</item>


</style>

android创建自定义对话框的更多相关文章

  1. Android—关于自定义对话框的工具类

    开发中有很多地方会用到自定义对话框,为了避免不必要的城府代码,在此总结出一个工具类. 弹出对话框的地方很多,但是都大同小异,不同无非就是提示内容或者图片不同,下面这个类是将提示内容和图片放到了自定义函 ...

  2. Android创建自定义dialog方法详解-样式去掉阴影效果

    在自定义组件时,从已有组件源码中会很大收获.就拿progressDialog来说     间接父类是dialog,想了解dialog继承结构可以去百度,或者    从构造器来说ProgressDial ...

  3. 2.5.3 使用alertDialog创建自定义对话框

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout ...

  4. Android创建自定义Application

    开发目的 创建一个自定义的MainApplication继承Application. 读取AndroidManifest.xml文件中Application节点的META-DATA数据.此处以ApiK ...

  5. Android 创建自定义布局

    我们所有的控件都是继承至View类的,而所有的布局都是继承至ViewGroup的,所以我们也可以继承某个view类来实现我们自己的布局或者控件. 引入布局 我们新建一个title.xml的layout ...

  6. Android创建自定义的布局和控件

    Android的自带布局有framelayout.linerlayout.relativelayout,外加两个百分比布局,但是这些无法灵活的满足我们的需要,所以我们要自己自定义并引入自己的布局.首先 ...

  7. Android 创建自定义 View 的属性 (attrs) 时需要注意的问题

    自定义 View 的属性并不难,可以参照官方的文档 https://developer.android.com/training/custom-views/create-view.html 但是需要注 ...

  8. Android自定义组件系列【13】——Android自定义对话框如此简单

    在我们的日常项目中很多地方会用到对话框,但是Android系统为我们提供的对话框样子和我们精心设计的界面很不协调,在这种情况下我们想很自由的定义对话框,或者有的时候我们的对话框是一个图片,没有标题和按 ...

  9. Android Studio常见对话框(普通对话框、单选对话框、多选对话框、进度条对话框、消息对话框、自定义对话框)

    Android Studio常见对话框(普通对话框.单选对话框.多选对话框.进度条对话框.消息对话框.自定义对话框) 1.普通对话框 2.单选对话框 3.多选对话框 4.进度条对话框 5.消息对话框 ...

随机推荐

  1. MFC消息映射的原理:笔记

    多态的实现机制有两种,一是通过查找绝对位置表,二是查找名称表:两者各有优缺点,那么为什么mfc的消息映射采用了第二种方法,而不是c++使用的第一种呢?因为在mfc的gui类库是一个庞大的继承体系,而里 ...

  2. 【Demo 0010】事件响应链

    本章学习要点:       1.  熟悉iOS事件分发过程以及事件响应链;       2.  掌握基本事件响应方法(单击,双击):       3.  掌握基本手势处理方法:

  3. android电池充电以及电量检测驱动分析

    前段时间比较烦躁,各种不想学习不想工作,于是休息了几天.这几天又下来任务了--调试充电电路和电池电量检测电路,于是又开始工作,顺便把调试过程记录下来. 平台: cpu        飞思卡尔imx6q ...

  4. ADO面板上的控件简介

    ADO面板上的控件简介 一. TADOConnection组件该组件用于建立数据库的连接.ADO的数据源组件和命令组件可以通过该组件运行命令及数据库中提取数据等.该组件用于建立数据库的连接,该连接可被 ...

  5. Java魔法堂:JVM的运行模式 (转)

    一.前言 JVM有Client和Server两种运行模式.不同的模式对应不同的应用场景,而JVM也会有相应的优化.本文将记录JVM模式的信息,以便日后查阅. 二.介绍 在$JAVA_HOME/jre/ ...

  6. Swift 编程语言新手教程

    今天在网上看到一篇很好的教程,分享给大家 原文地址:http://gashero.iteye.com/blog/2075324 文件夹 1   简单介绍 2   Swift入门 3   简单值 4   ...

  7. HNCU1101:马的移动(BFS)

    http://hncu.acmclub.com/index.php?app=problem_title&id=111&problem_id=1101 题目描述 小明很喜欢下国际象棋,一 ...

  8. 30分钟快速掌握AngularJs

    [后端人员耍前端系列]AngularJs篇:30分钟快速掌握AngularJs   一.前言 对于前端系列,自然少不了AngularJs的介绍了.在前面文章中,我们介绍了如何使用KnockoutJs来 ...

  9. 面向接口可扩展框架之“Mvc扩展框架及DI”

    面向接口可扩展框架之“Mvc扩展框架及DI” 标题“Mvc扩展框架及DI”有点绕口,我也想不出好的命名,因为这个内容很杂,涉及多个模块,但在日常开发又密不可分 首先说Mvc扩展框架,该Mvc扩展就是把 ...

  10. Linux从用户层到内核层系列 - GNU系列之glibc介绍

    题记:本系列文章的目的是抛开书本从源代码和使用的角度分析Linux内核和相关源代码,byhankswang和你一起玩转linux开发 轻松搞定TCP/IP协议栈,原创文章欢迎交流, byhankswa ...