Android第三十三期 - Dialog的应用

简介:

    今天遇到一个大难题哦,不过有大牛一眼就瞄出来了,然后就解决了,AlertDialog和Dialog自定义后圆角的处理,如果你跟我一样没有看到这些细节的话就栽了,用AlertDialog不能使得圆角背景透明化,所以要用Dialog处理才行,也就是下面的方法。

    Dialog:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
private  static  Dialog mDialog;
 
     // 加载gridview中的item的xml方法
     public  static  View getView(Context context,  int  layoutId) {
         LayoutInflater inflater = (LayoutInflater) context
                 .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
         View layout = inflater.inflate(layoutId,  null );
         return  layout;
     }
/**
      * 显示自定义对话框
     
      * @param context
      * @param message
      * @param listener
      */
     public  static  void  showDialog( final  Context context, String message,
             final  IAlertDialogButtonListener listener) {
         View dialogView =  null ;
         // Dialog.Builder builder = new Builder(context,
         // R.style.Theme_Transparent);
         mDialog =  new  Dialog(context, R.style.Theme_Transparent);
 
         dialogView = getView(context, R.layout.dialog_view);
         Button btn_ok = (Button) dialogView.findViewById(R.id.btn_ok);
         Button btn_cancel = (Button) dialogView.findViewById(R.id.btn_cancel);
         TextView txt_dailog_message = (TextView) dialogView
                 .findViewById(R.id.txt_dailog_message);
         txt_dailog_message.setText(message);
         btn_ok.setOnClickListener( new  View.OnClickListener() {
 
             @Override
             public  void  onClick(View arg0) {
                 // 关闭dialog
                 if  (mDialog !=  null ) {
                     mDialog.cancel();
                 }
                 // 事件回调
                 if  (listener !=  null ) {
                     listener.onClick();
                 }
 
                 // 播放音效
                 // MyPlayer.playTone(context, MyPlayer.INDEX_STONE_ENTER);
             }
         });
         btn_cancel.setOnClickListener( new  View.OnClickListener() {
 
             @Override
             public  void  onClick(View arg0) {
                 // 关闭dialog
                 if  (mDialog !=  null ) {
                     mDialog.cancel();
                 }
                 // 播放音效
                 // MyPlayer.playTone(context, MyPlayer.INDEX_STONE_CANCEL);
             }
         });
         // 为dialog设置View
         // builder.setView(dialogView);
         mDialog.setContentView(dialogView);
         // mDialog = builder.create();
         mDialog.show();
     }
}

    AlertDialog:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
      * 显示自定义对话框
     
      * @param context
      * @param message
      * @param listener
      */
     public  static  void  showDialog( final  Context context, String message,
             final  IAlertDialogButtonListener listener) {
         View dialogView =  null ;
         AlertDialog.Builder builder =  new  Builder(context,
                 R.style.Theme_Transparent);
         dialogView = getView(context, R.layout.dialog_view);
         ImageButton btn_ok = (ImageButton) dialogView.findViewById(R.id.btn_ok);
         ImageButton btn_cancel = (ImageButton) dialogView
                 .findViewById(R.id.btn_cancel);
         TextView txt_dailog_message = (TextView) dialogView
                 .findViewById(R.id.txt_dailog_message);
         txt_dailog_message.setText(message);
         btn_ok.setOnClickListener( new  View.OnClickListener() {
 
             @Override
             public  void  onClick(View arg0) {
                 // 关闭dialog
                 if  (mAlertDialog !=  null ) {
                     mAlertDialog.cancel();
                 }
                 // 事件回调
                 if  (listener !=  null ) {
                     listener.onClick();
                 }
 
                 // 播放音效
                 MyPlayer.playTone(context, MyPlayer.INDEX_STONE_ENTER);
             }
         });
         btn_cancel.setOnClickListener( new  View.OnClickListener() {
 
             @Override
             public  void  onClick(View arg0) {
                 // 关闭dialog
                 if  (mAlertDialog !=  null ) {
                     mAlertDialog.cancel();
                 }
                 // 播放音效
                 MyPlayer.playTone(context, MyPlayer.INDEX_STONE_CANCEL);
             }
         });
         // 为dialog设置View
         builder.setView(dialogView);
         mAlertDialog = builder.create();
         mAlertDialog.show();
     }

    af_dialog_background圆角:

1
2
3
4
5
6
7
8
9
10
11
12
<?xml version= "1.0"  encoding= "utf-8" ?>
<shape xmlns:android= "http://schemas.android.com/apk/res/android"  >
 
     <solid android:color= "#3C4856"  />
 
     <corners
        android:bottomLeftRadius= "0.1dp"
        android:bottomRightRadius= "0.1dp"
         android:topLeftRadius= "10dp"
         android:topRightRadius= "10dp"  />
 
</shape>

    dialog_view:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version= "1.0"  encoding= "utf-8" ?>
<LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"
     android:layout_width= "fill_parent"
     android:layout_height= "wrap_content"
     android:gravity= "center_horizontal"
     android:orientation= "vertical"
     android:paddingLeft= "10dp"
     android:paddingRight= "10dp"  >
 
     <LinearLayout
         android:layout_width= "match_parent"
         android:layout_height= "wrap_content"
         android:background= "@drawable/af_dialog_background"
         android:orientation= "vertical"  >
 
         <TextView
             style= "@style/TextViewStyle_aboutus"
             android:layout_gravity= "left"
             android:layout_marginLeft= "10dp"
             android:layout_marginTop= "5dp"
             android:text= "@string/af_logo_10_dialog_title"
             android:textColor= "@color/white4"
             android:textSize= "14sp"  />
 
         <ScrollView
             android:layout_width= "wrap_content"
             android:layout_height= "wrap_content"
             android:layout_marginLeft= "10dp"
             android:layout_marginRight= "10dp"
             android:layout_marginTop= "10dp"
             android:background= "@drawable/af_dialog_background"
             android:fillViewport= "true"
             android:scrollbars= "none"  >
 
             <TextView
                 android:id= "@+id/txt_dailog_message"
                 style= "@style/TextViewStyle_aboutus"
                 android:lineSpacingMultiplier= "1.2"
                 android:text= "@string/af_logo_10_dialog_content"
                 android:textColor= "@color/white4"
                 android:textSize= "14sp"  />
         </ScrollView>
     </LinearLayout>
 
     <LinearLayout
         android:layout_width= "match_parent"
         android:layout_height= "wrap_content"
         android:background= "@color/white"
         android:gravity= "center_horizontal"
         android:orientation= "horizontal"  >
 
         <Button
             android:id= "@+id/btn_cancel"
             style= "?android:attr/buttonBarButtonStyle"
             android:layout_width= "0dp"
             android:layout_height= "wrap_content"
             android:layout_marginBottom= "5dp"
             android:layout_marginLeft= "25dp"
             android:layout_marginRight= "15dp"
             android:layout_marginTop= "5dp"
             android:layout_weight= "1"
             android:background= "@drawable/btn_cancelclick"
             android:contentDescription= "@string/action_settings"
             android:paddingBottom= "8dp"
             android:paddingTop= "8dp"
             android:text= "@string/af_cancel"
             android:textColor= "@color/white"
             android:textSize= "16sp"  />
 
         <Button
             android:id= "@+id/btn_ok"
             style= "?android:attr/buttonBarButtonStyle"
             android:layout_width= "0dp"
             android:layout_height= "wrap_content"
             android:layout_marginBottom= "5dp"
             android:layout_marginLeft= "15dp"
             android:layout_marginRight= "25dp"
             android:layout_marginTop= "5dp"
             android:layout_weight= "1"
             android:background= "@drawable/btn_able"
             android:contentDescription= "@string/action_settings"
             android:paddingBottom= "8dp"
             android:paddingTop= "8dp"
             android:text= "@string/af_confirm"
             android:textColor= "@color/white"
             android:textSize= "16sp"  />
     </LinearLayout>
 
</LinearLayout>

    最后是style:

1
2
3
4
5
6
7
8
9
10
<style name= "Theme_Transparent"  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:windowBackground" > @android :color/transparent</item>
         <item name= "android:backgroundDimEnabled" > true </item>
         <item name= "android:backgroundDimAmount" > 0.6 </item>
     </style>

    谢谢hongyang大神~~开心挣钱每一天









本文转自 吴雨声 51CTO博客,原文链接:http://blog.51cto.com/liangxiao/1613291,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
开发框架 前端开发 Android开发
Flutter 与原生模块(Android 和 iOS)之间的通信机制,包括方法调用、事件传递等,分析了通信的必要性、主要方式、数据传递、性能优化及错误处理,并通过实际案例展示了其应用效果,展望了未来的发展趋势
本文深入探讨了 Flutter 与原生模块(Android 和 iOS)之间的通信机制,包括方法调用、事件传递等,分析了通信的必要性、主要方式、数据传递、性能优化及错误处理,并通过实际案例展示了其应用效果,展望了未来的发展趋势。这对于实现高效的跨平台移动应用开发具有重要指导意义。
221 4
|
4月前
|
IDE Java 开发工具
深入探索安卓应用开发:从环境搭建到第一个"Hello, World!"应用
本文将引导读者完成安卓应用开发的初步入门,包括安装必要的开发工具、配置开发环境、创建第一个简单的安卓项目,以及解释其背后的一些基本概念。通过一步步的指导和解释,本文旨在为安卓开发新手提供一个清晰、易懂的起点,帮助读者顺利地迈出安卓开发的第一步。
238 65
|
4月前
|
存储 Java Android开发
探索安卓应用开发:构建你的第一个"Hello World"应用
【9月更文挑战第24天】在本文中,我们将踏上一段激动人心的旅程,深入安卓应用开发的奥秘。通过一个简单而经典的“Hello World”项目,我们将解锁安卓应用开发的基础概念和步骤。无论你是编程新手还是希望扩展技能的老手,这篇文章都将为你提供一次实操体验。从搭建开发环境到运行你的应用,每一步都清晰易懂,确保你能顺利地迈出安卓开发的第一步。让我们开始吧,探索如何将一行简单的代码转变为一个功能齐全的安卓应用!
|
1月前
|
JSON Java API
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
60 14
|
1月前
|
Java Linux 数据库
探索安卓开发:打造你的第一款应用
在数字时代的浪潮中,每个人都有机会成为创意的实现者。本文将带你走进安卓开发的奇妙世界,通过浅显易懂的语言和实际代码示例,引导你从零开始构建自己的第一款安卓应用。无论你是编程新手还是希望拓展技术的开发者,这篇文章都将为你打开一扇门,让你的创意和技术一起飞扬。
|
1月前
|
搜索推荐 前端开发 测试技术
打造个性化安卓应用:从设计到开发的全面指南
在这个数字时代,拥有一个定制的移动应用不仅是一种趋势,更是个人或企业品牌的重要延伸。本文将引导你通过一系列简单易懂的步骤,从构思你的应用理念开始,直至实现一个功能齐全的安卓应用。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你提供必要的工具和知识,帮助你将创意转化为现实。
|
1月前
|
Java Android开发 开发者
探索安卓开发:构建你的第一个“Hello World”应用
在安卓开发的浩瀚海洋中,每个新手都渴望扬帆起航。本文将作为你的指南针,引领你通过创建一个简单的“Hello World”应用,迈出安卓开发的第一步。我们将一起搭建开发环境、了解基本概念,并编写第一行代码。就像印度圣雄甘地所说:“你必须成为你希望在世界上看到的改变。”让我们一起开始这段旅程,成为我们想要见到的开发者吧!
38 0
|
2月前
|
JSON Java Android开发
探索安卓开发之旅:打造你的第一个天气应用
【10月更文挑战第30天】在这个数字时代,掌握移动应用开发技能无疑是进入IT行业的敲门砖。本文将引导你开启安卓开发的奇妙之旅,通过构建一个简易的天气应用来实践你的编程技能。无论你是初学者还是有一定经验的开发者,这篇文章都将成为你宝贵的学习资源。我们将一步步地深入到安卓开发的世界中,从搭建开发环境到实现核心功能,每个环节都充满了发现和创造的乐趣。让我们开始吧,一起在代码的海洋中航行!
|
2月前
|
存储 搜索推荐 Java
打造个性化安卓应用:从设计到实现
【10月更文挑战第30天】在数字化时代,拥有一个个性化的安卓应用不仅能够提升用户体验,还能加强品牌识别度。本文将引导您了解如何从零开始设计和实现一个安卓应用,涵盖用户界面设计、功能开发和性能优化等关键环节。我们将以一个简单的记事本应用为例,展示如何通过Android Studio工具和Java语言实现基本功能,同时确保应用流畅运行。无论您是初学者还是希望提升现有技能的开发者,这篇文章都将为您提供宝贵的见解和实用的技巧。
|
2月前
|
搜索推荐 开发工具 Android开发
打造个性化Android应用:从设计到实现的旅程
【10月更文挑战第26天】在这个数字时代,拥有一个能够脱颖而出的移动应用是成功的关键。本文将引导您了解如何从概念化阶段出发,通过设计、开发直至发布,一步步构建一个既美观又实用的Android应用。我们将探讨用户体验(UX)设计的重要性,介绍Android开发的核心组件,并通过实际案例展示如何克服开发中的挑战。无论您是初学者还是有经验的开发者,这篇文章都将为您提供宝贵的见解和实用的技巧,帮助您在竞争激烈的应用市场中脱颖而出。