Android 自定义一套 Dialog通用提示框 (代码库)
做android开发五年了,期间做做停停(去做后台开发,服务器管理),当回来做android的时候,发现很生疏,好些控件以前写得很顺手,现在好像忘记些什么了,总要打开这个项目,打开那个项目,有时未必还找得到。
总结起来,还是源于没有好好做一个属于自己的代码库,把平时开发项目中一些自定义的控件,或一些耦合性很低的模块封装起来,或者平时比较少写博客。如果你是一个刚学会开发的程序猿,或者是有过好几年开发经验的大鸟,也该开始整理整理自己的代码,这也不枉此生敲代码的岁月,同时在面试中,也会给你带来不少印象分喔。所以,我也开始准备自己的代码库,放在github 或者微博上,希望可以跟各位大神多交流。下面我先放一到两个自定义控件。
自定义一套 dialog通用提示框:
上诉提示框都是一种类型,当然有可能你不大满意,或者与你们设计师的要求的风格不一致,没关系,你只要进去修改一下dialog 的布局就可以了。当然,我希望在自定义这些控件的时候,能用xml 来渲染的,尽量不要用图片去做背景之类的。每个app 的提示框风格其实大体一致的,不会每个页面的提示框都不一样,如果真的变化太大,我们就重新自定义一个dialog即可。其它的只需设置一下信息即可:
new commomdialog(mcontext, r.style.dialog, "您确定删除此信息?", new commomdialog.oncloselistener() { @override public void onclick(boolean confirm) { if(confirm){ toast.maketext(this,"点击确定", toast.length_short).show(); dialog.dismiss(); } } }) .settitle("提示").show();
我们先看 commomdialog 类, 这个类定义的时候,里面的方法尽量做成链式的,方便后期调用
public class commomdialog extends dialog implements view.onclicklistener{ private textview contenttxt; private textview titletxt; private textview submittxt; private textview canceltxt; private context mcontext; private string content; private oncloselistener listener; private string positivename; private string negativename; private string title; public commomdialog(context context) { super(context); this.mcontext = context; } public commomdialog(context context, int themeresid, string content) { super(context, themeresid); this.mcontext = context; this.content = content; } public commomdialog(context context, int themeresid, string content, oncloselistener listener) { super(context, themeresid); this.mcontext = context; this.content = content; this.listener = listener; } protected commomdialog(context context, boolean cancelable, oncancellistener cancellistener) { super(context, cancelable, cancellistener); this.mcontext = context; } public commomdialog settitle(string title){ this.title = title; return this; } public commomdialog setpositivebutton(string name){ this.positivename = name; return this; } public commomdialog setnegativebutton(string name){ this.negativename = name; return this; } @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.dialog_commom); setcanceledontouchoutside(false); initview(); } private void initview(){ contenttxt = (textview)findviewbyid(r.id.content); titletxt = (textview)findviewbyid(r.id.title); submittxt = (textview)findviewbyid(r.id.submit); submittxt.setonclicklistener(this); canceltxt = (textview)findviewbyid(r.id.cancel); canceltxt.setonclicklistener(this); contenttxt.settext(content); if(!textutils.isempty(positivename)){ submittxt.settext(positivename); } if(!textutils.isempty(negativename)){ canceltxt.settext(negativename); } if(!textutils.isempty(title)){ titletxt.settext(title); } } @override public void onclick(view v) { switch (v.getid()){ case r.id.cancel: if(listener != null){ listener.onclick(this, false); } this.dismiss(); break; case r.id.submit: if(listener != null){ listener.onclick(this, true); } break; } } public interface oncloselistener{ void onclick(dialog dialog, boolean confirm); } }
自定义了监听事件,设置了消息后,返回该句柄, return this;
再看看 r.layout.dialog_commom xml 文件
<?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:background="@drawable/bg_round_white" android:orientation="vertical" > <textview android:id="@+id/title" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:padding="12dp" android:layout_margintop="12dp" android:text="提示" android:textsize="16sp" android:textcolor="@color/black"/> <textview android:id="@+id/content" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:layout_gravity="center_horizontal" android:linespacingextra="3dp" android:layout_marginleft="40dp" android:layout_margintop="20dp" android:layout_marginright="40dp" android:layout_marginbottom="30dp" android:text="签到成功,获得200积分" android:textsize="12sp" android:textcolor="@color/font_common_1"/> <view android:layout_width="match_parent" android:layout_height="1dp" android:background="@color/commom_background"/> <linearlayout android:layout_width="match_parent" android:layout_height="50dp" android:orientation="horizontal"> <textview android:id="@+id/cancel" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/bg_dialog_left_white" android:layout_weight="1.0" android:gravity="center" android:text="@string/cancel" android:textsize="12sp" android:textcolor="@color/font_common_2"/> <view android:layout_width="1dp" android:layout_height="match_parent" android:background="@color/commom_background"/> <textview android:id="@+id/submit" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/bg_dialog_right_white" android:gravity="center" android:layout_weight="1.0" android:text="@string/submit" android:textsize="12sp" android:textcolor="@color/font_blue"/> </linearlayout> </linearlayout>
整个背景我使用了圆角,这样不显得特别生硬 android:background="@drawable/bg_round_white"
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="@color/white" /> <corners android:radius="8dp" /> </shape>
当然底部两个按钮也是要做相应的圆角处理:
左下按钮:android:background="@drawable/bg_dialog_left_white"
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="@color/white" /> <corners android:bottomleftradius="8dp" /> </shape>
右下按钮:android:background="@drawable/bg_dialog_right_white"
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="@color/white" /> <corners android:bottomrightradius="8dp" /> </shape>
展示的 style 也要设置一下:
<style name="dialog" parent="@android:style/theme.dialog"> <item name="android:windowframe">@null</item> <!--边框--> <item name="android:windowisfloating">true</item> <!--是否浮现在activity之上--> <item name="android:windowistranslucent">false</item> <!--半透明--> <item name="android:windownotitle">true</item> <!--无标题--> <item name="android:windowbackground">@android:color/transparent</item> <!--背景透明--> <item name="android:backgrounddimenabled">true</item> <!--模糊--> </style>
这样基本大功告成,通过设置消息头,信息体,按钮名称,还有点击事件,就可以随意控制你的提示框了。
源码链接:
后面我会把自己的代码库都放上来,与大家一起学习。
以上所述是小编给大家介绍的android 自定义一套 dialog通用提示框 (代码库),希望对大家有所帮助