android高仿微信表情输入与键盘输入代码(详细实现分析)
表情与键盘的切换输入大部分im都会需要到,之前自己实现了一个,还是存在些缺陷,比如说键盘与表情切换时出现跳闪问题,这个困扰了我些时间,不过所幸在github(其代码整体结构很不错)并且在论坛上找些解决思路,再加上研究了好几个开源项目的代码,最后终于苦逼地整合出比较不错的实现效果(这里不仅给出了实现方案,还提供一个可拓展的fragment模板以便大家实现自己的表情包)代码我已进行另外的封装与拓展,大家需要其他表情的话只需要根据fragment模板实现自己的表情界面,然后根据工厂类获取即可,实现效果如下。
- emotionkeyboard.java, (表情操作核心类)
- emotioncomplatefragment.java(表情fragment模板)
- fragmentfactory.java,(生产表情fragment模板工厂类)
- emotionutils.java(表情字符转换工具)
- globalonitemclickmanagerutils.java(全局监听类)
1.解决表情与键盘切换跳闪问题
1.1跳闪问题概述
为了让大家对这个问题有一定了解,我先来个简单案例,用红色面板代表表情面板,效果如下:
图(1-1)
图(1-2)
我们先来看图(1-1),即上图,通过上图我们可以看出,当表情显示时,我们点击表情按钮,隐藏表情显示软件盘时,内容bar有一个明显的先向下后恢复的跳闪现象,这样用户体验相当的差,我们希望的是下图(1-2)的效果,无论怎么切换都不会有跳闪现象,这就是我所有说的键盘与表情切换的跳闪问题。到这里,我们对这个问题有了大概了解后,再来深入分析如何实现图(1-2)的不跳闪效果。这里我们做个约定,我们把含有表情那个bar统称为内容bar。
1.2 解决跳闪问题的思路:
android系统在弹出软键盘时,会把我们的内容 bar 顶上去,因此只有表情面板的高度与软键盘弹出时高度一致时,才有可能然切换时高度过渡更自然,所以我们必须计算出软键盘的高度并设置给表情面板。仅仅有这一步跳闪问题还是依旧存在,因此这时我们必须想其他办法固定内容bar,因为所有的跳闪都是表情面板隐藏,而软键盘往上托出瞬间,activity高度变高(为什么会变高后面会说明),内容bar往下滑后,又被软键盘顶回原来位置造成的。
因此只要固定了内容bar的位置,闪跳问题就迎刃而解了。那么如何固定内容bar的位置呢?我们知道在一个布局中一个控件的位置其实是由它上面所有控件的高度决定的,如果其上面其他控件的高度不变,那么当前控件的高度自然也不会变化,即使到时activity的高度发生了变化也也不会影响该控件的位置(整个界面的显示是挂载在window窗体上的,而非activity,不了解的可以先研究一下窗体的创建过程),因此我们只要在软键盘弹出前固定内容bar上面所有控件高度,从而达到固定内容bar位置(高度)的目的。好了,有思路了,我们接下来一步步按上面思路解决问题。
1.3 解决跳闪问题的套路:
1.3.1 先获取键盘高度,并设置表情面板的高度为软键盘的高度
android系统在界面上弹出软键盘时会将整个activity的高度压缩,此时windowsoftinputmode属性设置为adjustresize(对windowsoftinputmode不清楚的话,请自行查阅相关资料哈),这个属性表示activity的主窗口总是会被调整大小,从而保证软键盘显示空间。在这种情况下我们可以通过以下方法计算软键盘的高度:
rect r = new rect(); /* * decorview是window中的最顶层view,可以从window中通过getdecorview获取到decorview。 * 通过decorview获取到程序显示的区域,包括标题栏,但不包括状态栏。 */ mactivity.getwindow().getdecorview().getwindowvisibledisplayframe(r); //获取屏幕的高度 int screenheight = mactivity.getwindow().getdecorview().getrootview().getheight(); //计算软件盘的高度 int softinputheight = screenheight - r.bottom;
这里我们队对r.bottom和mactivity.getwindow().getdecorview().getwindowvisibledisplayframe(r)进行简单解释,直接上图吧:
这下就清晰了吧,右边是rect参数解析图,辅助我们对rect的理解。
rect r = new rect(); mactivity.getwindow().getdecorview().getwindowvisibledisplayframe(r)
这两句其实将左图中蓝色边框( 其实也就是actvity的大小)的size大小参数封装到rect中,以便我们后续使用。虽然计算出来的区域大小不包含状态栏,但是r.bottom(红色箭头长度)的大小是从屏幕顶部开始计算的所以包含了状态栏的高度。需要注意的
是,区域大小是这样计算出来的:
区域的高:r.bottom-r.top
区域的宽:r.right-r.left
当然这个跟计算软键盘高度没关系,只是顺带提一下。因此我们可以通过即可获取到软以下方式获取键盘高度:
键盘高度=屏幕高度-r.bottom
1.3.2 固定内容bar的高度,解决闪跳问题
软键盘高度解决后,现在剩下的问题关键就在于控制内容bar的高度了,那么如何做呢?我们先来看一个布局文件
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <listview android:id="@+id/listview" android:layout_weight="1" android:layout_width="match_parent" android:layout_height="0dp" /> <framelayout android:id="@+id/fl_emotionview_main" android:layout_width="match_parent" android:layout_height="wrap_content" /> </linearlayout>
其中listview的layout_height为0dp、layout_weight为1,这样这个listview就会自动充满整个布局,这里listview可以替换成任意控件,framelayout则为表情布局(也可认为就是我们前面所说的内容bar,只不过这里最终会被替换成整个表情布局),我们的目的就是在弹出软键盘时固定framelayout的高度,以便去除跳闪问题。根据我们前面的思路,framelayout的高度是由其上面的控件决定的也就是由listview决定的,也就是说我们只要在软键盘弹出前固定listview的内容高度即可。因此我们可以通过下面的方法来锁定listview的高度,(mcontentview就是我们所指的listview,这些方法都封装在emotionkeyboard.java类中)
/** * 锁定内容高度,防止跳闪 */ private void lockcontentheight(){ linearlayout.layoutparams params = (linearlayout.layoutparams) mcontentview.getlayoutparams(); params.height = mcontentview.getheight(); params.weight = 0.0f; } 将weight置0,然后将height设置为当前的height,在父控件(linearlayout)的高度变化时它的高度也不再会变化。释放listview的高度: private void unlockcontentheightdelayed() { medittext.postdelayed(new runnable() { @override public void run() { ((linearlayout.layoutparams) mcontentview.getlayoutparams()).weight = 1.0f; } }, 200l); }
其中的linearlayout.layoutparams.weight = 1.0f;,在代码里动态更改layoutparam的weight,会导致父控件重新onlayout(),也就达到改变控件的高度的目的。到此两个主要问题都解决了,我们直接上核心类代码,该类来自github上的开源项目我在使用中直接从该项目中抽取了该类, 并做了细微修改,也添加了代码注释。
package com.zejian.emotionkeyboard.emotionkeyboardview; import android.annotation.targetapi; import android.app.activity; import android.content.context; import android.content.sharedpreferences; import android.graphics.rect; import android.os.build; import android.util.displaymetrics; import android.view.motionevent; import android.view.view; import android.view.windowmanager; import android.view.inputmethod.inputmethodmanager; import android.widget.edittext; import android.widget.linearlayout; import com.zejian.emotionkeyboard.utils.logutils; /** * author : zejian * time : 2016年1月5日 上午11:14:27 */ public class emotionkeyboard { private static final string share_preference_name = "emotionkeyboard"; private static final string share_preference_soft_input_height = "soft_input_height"; private activity mactivity; private inputmethodmanager minputmanager;//软键盘管理类 private sharedpreferences sp; private view memotionlayout;//表情布局 private edittext medittext;// private view mcontentview;//内容布局view,即除了表情布局或者软键盘布局以外的布局,用于固定bar的高度,防止跳闪 private emotionkeyboard(){ } /** * 外部静态调用 * @param activity * @return */ public static emotionkeyboard with(activity activity) { emotionkeyboard emotioninputdetector = new emotionkeyboard(); emotioninputdetector.mactivity = activity; emotioninputdetector.minputmanager = (inputmethodmanager) activity.getsystemservice(context.input_method_service); emotioninputdetector.sp = activity.getsharedpreferences(share_preference_name, context.mode_private); return emotioninputdetector; } /** * 绑定内容view,此view用于固定bar的高度,防止跳闪 * @param contentview * @return */ public emotionkeyboard bindtocontent(view contentview) { mcontentview = contentview; return this; } /** * 绑定编辑框 * @param edittext * @return */ public emotionkeyboard bindtoedittext(edittext edittext) { medittext = edittext; medittext.requestfocus(); medittext.setontouchlistener(new view.ontouchlistener() { @override public boolean ontouch(view v, motionevent event) { if (event.getaction() == motionevent.action_up && memotionlayout.isshown()) { lockcontentheight();//显示软件盘时,锁定内容高度,防止跳闪。 hideemotionlayout(true);//隐藏表情布局,显示软件盘 //软件盘显示后,释放内容高度 medittext.postdelayed(new runnable() { @override public void run() { unlockcontentheightdelayed(); } }, 200l); } return false; } }); return this; } /** * 绑定表情按钮 * @param emotionbutton * @return */ public emotionkeyboard bindtoemotionbutton(view emotionbutton) { emotionbutton.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { if (memotionlayout.isshown()) { lockcontentheight();//显示软件盘时,锁定内容高度,防止跳闪。 hideemotionlayout(true);//隐藏表情布局,显示软件盘 unlockcontentheightdelayed();//软件盘显示后,释放内容高度 } else { if (issoftinputshown()) {//同上 lockcontentheight(); showemotionlayout(); unlockcontentheightdelayed(); } else { showemotionlayout();//两者都没显示,直接显示表情布局 } } } }); return this; } /** * 设置表情内容布局 * @param emotionview * @return */ public emotionkeyboard setemotionview(view emotionview) { memotionlayout = emotionview; return this; } public emotionkeyboard build(){ //设置软件盘的模式:soft_input_adjust_resize 这个属性表示activity的主窗口总是会被调整大小,从而保证软键盘显示空间。 //从而方便我们计算软件盘的高度 mactivity.getwindow().setsoftinputmode(windowmanager.layoutparams.soft_input_state_always_hidden | windowmanager.layoutparams.soft_input_adjust_resize); //隐藏软件盘 hidesoftinput(); return this; } /** * 点击返回键时先隐藏表情布局 * @return */ public boolean interceptbackpress() { if (memotionlayout.isshown()) { hideemotionlayout(false); return true; } return false; } private void showemotionlayout() { int softinputheight = getsupportsoftinputheight(); if (softinputheight == 0) { softinputheight = sp.getint(share_preference_soft_input_height, 400); } hidesoftinput(); memotionlayout.getlayoutparams().height = softinputheight; memotionlayout.setvisibility(view.visible); } /** * 隐藏表情布局 * @param showsoftinput 是否显示软件盘 */ private void hideemotionlayout(boolean showsoftinput) { if (memotionlayout.isshown()) { memotionlayout.setvisibility(view.gone); if (showsoftinput) { showsoftinput(); } } } /** * 锁定内容高度,防止跳闪 */ private void lockcontentheight() { linearlayout.layoutparams params = (linearlayout.layoutparams) mcontentview.getlayoutparams(); params.height = mcontentview.getheight(); params.weight = 0.0f; } /** * 释放被锁定的内容高度 */ private void unlockcontentheightdelayed() { medittext.postdelayed(new runnable() { @override public void run() { ((linearlayout.layoutparams) mcontentview.getlayoutparams()).weight = 1.0f; } }, 200l); } /** * 编辑框获取焦点,并显示软件盘 */ private void showsoftinput() { medittext.requestfocus(); medittext.post(new runnable() { @override public void run() { minputmanager.showsoftinput(medittext, 0); } }); } /** * 隐藏软件盘 */ private void hidesoftinput() { minputmanager.hidesoftinputfromwindow(medittext.getwindowtoken(), 0); } /** * 是否显示软件盘 * @return */ private boolean issoftinputshown() { return getsupportsoftinputheight() != 0; } /** * 获取软件盘的高度 * @return */ private int getsupportsoftinputheight() { rect r = new rect(); /** * decorview是window中的最顶层view,可以从window中通过getdecorview获取到decorview。 * 通过decorview获取到程序显示的区域,包括标题栏,但不包括状态栏。 */ mactivity.getwindow().getdecorview().getwindowvisibledisplayframe(r); //获取屏幕的高度 int screenheight = mactivity.getwindow().getdecorview().getrootview().getheight(); //计算软件盘的高度 int softinputheight = screenheight - r.bottom; /** * 某些android版本下,没有显示软键盘时减出来的高度总是144,而不是零, * 这是因为高度是包括了虚拟按键栏的(例如华为系列),所以在api level高于20时, * 我们需要减去底部虚拟按键栏的高度(如果有的话) */ if (build.version.sdk_int >= 20) { // when sdk level >= 20 (android l), the softinputheight will contain the height of softbuttonsbar (if has) softinputheight = softinputheight - getsoftbuttonsbarheight(); } if (softinputheight < 0) { logutils.w("emotionkeyboard--warning: value of softinputheight is below zero!"); } //存一份到本地 if (softinputheight > 0) { sp.edit().putint(share_preference_soft_input_height, softinputheight).apply(); } return softinputheight; } /** * 底部虚拟按键栏的高度 * @return */ @targetapi(build.version_codes.jelly_bean_mr1) private int getsoftbuttonsbarheight() { displaymetrics metrics = new displaymetrics(); //这个方法获取可能不是真实屏幕的高度 mactivity.getwindowmanager().getdefaultdisplay().getmetrics(metrics); int usableheight = metrics.heightpixels; //获取当前屏幕的真实高度 mactivity.getwindowmanager().getdefaultdisplay().getrealmetrics(metrics); int realheight = metrics.heightpixels; if (realheight > usableheight) { return realheight - usableheight; } else { return 0; } } /** * 获取软键盘高度 * @return */ public int getkeyboardheight(){ return sp.getint(share_preference_soft_input_height, 400); } }
emotionkeyboard类使用的是设计模式中的builder模式来创建对象。其中memotionlayout是表情布局,mcontentview是内容布局view,即除了表情布局或者软键盘布局以外的布局,用于固定bar的高度,防止跳闪,当然mcontentview可以是任意布局。
/** * 绑定表情按钮 * @param emotionbutton * @return */ public emotionkeyboard bindtoemotionbutton(view emotionbutton) { emotionbutton.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { if (memotionlayout.isshown()) { lockcontentheight();//显示软件盘时,锁定内容高度,防止跳闪。 hideemotionlayout(true);//隐藏表情布局,显示软件盘 unlockcontentheightdelayed();//软件盘显示后,释放内容高度 } else { if (issoftinputshown()) {//同上 lockcontentheight(); showemotionlayout(); unlockcontentheightdelayed(); } else { showemotionlayout();//两者都没显示,直接显示表情布局 } } } }); return this; }
这里我们主要重点说明一下点击表情按钮时,显示或者隐藏表情布局以及软键盘的逻辑。首先我们通过memotionlayout.isshown()去判断表情是否已经显示,如果返回true,这时肯定要去切换成软键盘,因此必须先通过lockcontentheight()方法锁定mcontentview内容高度,然后通过hideemotionlayout(true)方法因此表情布局并显示软键盘,这里传入true表示显示软键盘,如果传入false则表示不显示软键盘,软键盘显示后通过unlockcontentheightdelayed()方法去解锁mcontentview内容高度。
但如果memotionlayout.isshown()返回了false,这有两种情况,第1种是如果此时软键盘已经显示,则需先锁定mcontentview内容高度,再去隐藏软键盘,然后显示表情布局,最后再解锁mcontentview内容高度。第2种情况是软键盘和表情都没显示,这下就简单了,直接显示表情布局即可。好,这个类解析到这,其他直接看源码哈,注释杠杠的哈。最后我们来看看在外部使用该类的例子代码如下:
memotionkeyboard = emotionkeyboard.with(getactivity()) .setemotionview(rootview.findviewbyid(r.id.ll_emotion_layout))//绑定表情面板 .bindtocontent(contentview)//绑定内容view .bindtoedittext(!isbindtobaredittext ? ((edittext) contentview) : ((edittext) rootview.findviewbyid(r.id.bar_edit_text)))//判断绑定那种editview .bindtoemotionbutton(rootview.findviewbyid(r.id.emotion_button))//绑定表情按钮 .build();
2.实现表情表情面板切换的思路
这里我们主要采用nohorizontalscrollerviewpager+recyclerview+fragment实现,思路是这样的,我们以nohorizontalscrollerviewpager作为载体,fragment作为展示界面,recyclerview作为底部滚动条,每当点击recyclerview的item时,我们使用viewpager.setcurrentitem(position,false)方法来切换fragment界面即可(这里传入false是表示不需要viewpager的切换动画)。这样我们就可以实现不同类表情的切换了。
(提示一下这里所指的fragment其实是就工程目录中的emotiomcomplatefragment.java类)这个比较简单,就不多啰嗦了。实现代码稍后会一起提供。下面是不可横向滑动的viewpager的实现代码,非常简单,不拦截子类事件即可。
package com.zejian.emotionkeyboard.emotionkeyboardview; import android.content.context; import android.support.v4.view.viewpager; import android.util.attributeset; import android.view.motionevent; /** * created by zejian * time 16/1/7 上午11:12 * description:不可横向滑动的viewpager */ public class nohorizontalscrollerviewpager extends viewpager{ public nohorizontalscrollerviewpager(context context) { super(context); } public nohorizontalscrollerviewpager(context context, attributeset attrs) { super(context, attrs); } /** * 重写拦截事件,返回值设置为false,这时便不会横向滑动了。 * @param ev * @return */ @override public boolean onintercepttouchevent(motionevent ev) { return false; } /** * 重写拦截事件,返回值设置为false,这时便不会横向滑动了。 * @param ev * @return */ @override public boolean ontouchevent(motionevent ev) { return false; } }
3.单个表情面板的实现思路
3.1 表情图片的本质与显示
表情的显示从直观上看确实是一个图片,但实际只是一种特殊的文本(imagespan),比如微博里表情就是”[表情名字]”的接口,可爱的表情就是[可爱]…因此这里我们也打算利用”[表情名字]”作为key,图片的r值作为内容进行存取,emotionutils类如下
package com.zejian.emotionkeyboard.utils; import android.support.v4.util.arraymap; import com.zejian.emotionkeyboard.r; /** * @author : zejian * @time : 2016年1月5日 上午11:32:33 * @description :表情加载类,可自己添加多种表情,分别建立不同的map存放和不同的标志符即可 */ public class emotionutils { /** * 表情类型标志符 */ public static final int emotion_classic_type=0x0001;//经典表情 /** * key-表情文字; * value-表情图片资源 */ public static arraymap<string, integer> empty_map; public static arraymap<string, integer> emotion_classic_map; static { empty_map = new arraymap<>(); emotion_classic_map = new arraymap<>(); emotion_classic_map.put("[呵呵]", r.drawable.d_hehe); emotion_classic_map.put("[嘻嘻]", r.drawable.d_xixi); emotion_classic_map.put("[哈哈]", r.drawable.d_haha); emotion_classic_map.put("[爱你]", r.drawable.d_aini); emotion_classic_map.put("[挖鼻屎]", r.drawable.d_wabishi); emotion_classic_map.put("[吃惊]", r.drawable.d_chijing); emotion_classic_map.put("[晕]", r.drawable.d_yun); emotion_classic_map.put("[泪]", r.drawable.d_lei); emotion_classic_map.put("[馋嘴]", r.drawable.d_chanzui); emotion_classic_map.put("[抓狂]", r.drawable.d_zhuakuang); emotion_classic_map.put("[哼]", r.drawable.d_heng); emotion_classic_map.put("[可爱]", r.drawable.d_keai); emotion_classic_map.put("[怒]", r.drawable.d_nu); emotion_classic_map.put("[汗]", r.drawable.d_han); emotion_classic_map.put("[害羞]", r.drawable.d_haixiu); emotion_classic_map.put("[睡觉]", r.drawable.d_shuijiao); emotion_classic_map.put("[钱]", r.drawable.d_qian); emotion_classic_map.put("[偷笑]", r.drawable.d_touxiao); emotion_classic_map.put("[笑cry]", r.drawable.d_xiaoku); emotion_classic_map.put("[doge]", r.drawable.d_doge); emotion_classic_map.put("[喵喵]", r.drawable.d_miao); emotion_classic_map.put("[酷]", r.drawable.d_ku); emotion_classic_map.put("[衰]", r.drawable.d_shuai); emotion_classic_map.put("[闭嘴]", r.drawable.d_bizui); emotion_classic_map.put("[鄙视]", r.drawable.d_bishi); emotion_classic_map.put("[花心]", r.drawable.d_huaxin); emotion_classic_map.put("[鼓掌]", r.drawable.d_guzhang); emotion_classic_map.put("[悲伤]", r.drawable.d_beishang); emotion_classic_map.put("[思考]", r.drawable.d_sikao); emotion_classic_map.put("[生病]", r.drawable.d_shengbing); emotion_classic_map.put("[亲亲]", r.drawable.d_qinqin); emotion_classic_map.put("[怒骂]", r.drawable.d_numa); emotion_classic_map.put("[太开心]", r.drawable.d_taikaixin); emotion_classic_map.put("[懒得理你]", r.drawable.d_landelini); emotion_classic_map.put("[右哼哼]", r.drawable.d_youhengheng); emotion_classic_map.put("[左哼哼]", r.drawable.d_zuohengheng); emotion_classic_map.put("[嘘]", r.drawable.d_xu); emotion_classic_map.put("[委屈]", r.drawable.d_weiqu); emotion_classic_map.put("[吐]", r.drawable.d_tu); emotion_classic_map.put("[可怜]", r.drawable.d_kelian); emotion_classic_map.put("[打哈气]", r.drawable.d_dahaqi); emotion_classic_map.put("[挤眼]", r.drawable.d_jiyan); emotion_classic_map.put("[失望]", r.drawable.d_shiwang); emotion_classic_map.put("[顶]", r.drawable.d_ding); emotion_classic_map.put("[疑问]", r.drawable.d_yiwen); emotion_classic_map.put("[困]", r.drawable.d_kun); emotion_classic_map.put("[感冒]", r.drawable.d_ganmao); emotion_classic_map.put("[拜拜]", r.drawable.d_baibai); emotion_classic_map.put("[黑线]", r.drawable.d_heixian); emotion_classic_map.put("[阴险]", r.drawable.d_yinxian); emotion_classic_map.put("[打脸]", r.drawable.d_dalian); emotion_classic_map.put("[傻眼]", r.drawable.d_shayan); emotion_classic_map.put("[猪头]", r.drawable.d_zhutou); emotion_classic_map.put("[熊猫]", r.drawable.d_xiongmao); emotion_classic_map.put("[兔子]", r.drawable.d_tuzi); } /** * 根据名称获取当前表情图标r值 * @param emotiontype 表情类型标志符 * @param imgname 名称 * @return */ public static int getimgbyname(int emotiontype,string imgname) { integer integer=null; switch (emotiontype){ case emotion_classic_type: integer = emotion_classic_map.get(imgname); break; default: logutils.e("the emojimap is null!!"); break; } return integer == null ? -1 : integer; } /** * 根据类型获取表情数据 * @param emotiontype * @return */ public static arraymap<string, integer> getemojimap(int emotiontype){ arraymap emojimap=null; switch (emotiontype){ case emotion_classic_type: emojimap=emotion_classic_map; break; default: emojimap=empty_map; break; } return emojimap; } }
arraymap
/** * 获取fragment的方法 * @param emotiontype 表情类型,用于判断使用哪个map集合的表情 */ public fragment getfragment(int emotiontype){ bundle bundle = new bundle(); bundle.putint(fragmentfactory.emotion_map_type,emotiontype); emotiomcomplatefragment fragment= emotiomcomplatefragment.newinstance(emotiomcomplatefragment.class,bundle); return fragment; }
调用时,如下:
//创建fragment的工厂类 fragmentfactory factory=fragmentfactory.getsinglefactoryinstance(); //创建修改实例 emotiomcomplatefragment f1= (emotiomcomplatefragment) factory.getfragment(emotionutils.emotion_classic_type);
这里我们通过工厂类getfragment(int emotiontype)方法的创建出模版表情类emotiomcomplatefragment,为什么说是模版呢,因为只要我们创建时传递集合标志不同,例如经典表情传递的就是emotionutils.emotion_classic_type,这时emotiomcomplatefragment类内部就会根据传递的集合类型去emotionutils类中获取相对应的集合,这样也就会创建出我们所需要的表情面板。这里小结一下:通过上术分析我们可以知道如果我们要添加自己的其他类型表情,只需以下步骤:
- 步骤1.在emotionutils类创建一个表情集合,并赋予这个集合唯一标志
- 步骤2.在emotionutils类中的两个获取方法中完善相应的代码。
- 步骤3.在创建新的emotiomcomplatefragment模板类时,传递相应的集合标志符即可创建相应的表情面板。
接下来的问题就是表情如何显示呢?其实这里主要用到了spannablestring拓展性字符串相关知识点,spannablestring可以让一段字符串在显示的时候,将其中某小段文字附着上其他内容或替换成其他内容,拓展内容可以是图片或者是文字格式,比如加粗,显示特殊颜色等。
imagespan,这个是可以将指定的特殊字符替换成我们所需要的图片。也就是我们可以使用”[表情名字]”这个key作为指定的特殊字符,然后在文本中替换成该key所对应的特殊表情即可。
简单实例如下:
spannablestring spannablestring = new spannablestring(source); int size = (int) tv.gettextsize()*13/10; bitmap bitmap = bitmapfactory.decoderesource(res, imgres); bitmap scalebitmap = bitmap.createscaledbitmap(bitmap, size, size, true); imagespan span = new imagespan(context, scalebitmap); spannablestring.setspan(span, start, start + key.length(), spannable.span_exclusive_exclusive);
首先将我们要替换的字符串转换成spannablestring再创建一个imagespan并把我们的表情图片包含在内,最后利用spannablestring的setspan方法,将span对象设置在对应位置,这样就完成了特殊字符与文字的转换。参数解析如下,
- start 是需要附着的内容的开始位置
- end 是需要附着的内容的开始位置
- flag 标志位,这里是最常用的exclusive_exclusive的表示span拓展文本不包含前后(这个参数还有其他类型,这里不过多介绍)
3.2 利用正则表达式找出特殊字符便于转换成表情
这里我们利用正则表达式找出特殊字符,根据我们自己的需求编写特定的正则表达式,如下:
string regex = "\\[[\u4e00-\u9fa5\\w]+\\]";
其中[]是我们特殊需要的字符,因此必须使用“//”进行转义,\u4e00-\u9fa5表示中文,\w表示下划线的任意单词字符,+ 代表一个或者多个。因此这段正则就代表,匹配方括号内有一或多个文字和单词字符的文本。有了正则表达式,剩下就是找匹配的问题了,这里我们可以先用matcher.find()获取到匹配的开始位置,作为setspan的start值,再使用matcher.group()方法获取到匹配规则的具体表情文字。对于matcher.find()和matcher.group()这里简单介绍一下:
- matcher.find(),代表部分匹配,从当前位置开始匹配,找到一个匹配的子串,将移动下次匹配的位置。因此我们可以通过这个方法获取到匹配的开始位置,作为setspan的start值(如果字符串中有多个表情就会执行多次匹配)。
- matcher.group(),获取匹配到的具体字符。
下面直接上spanstringutils.java类对代码:
package com.zejian.emotionkeyboard.utils; import android.content.context; import android.content.res.resources; import android.graphics.bitmap; import android.graphics.bitmapfactory; import android.text.spannable; import android.text.spannablestring; import android.text.style.imagespan; import android.widget.textview; import java.util.regex.matcher; import java.util.regex.pattern; /** * @author : zejian * @time : 2016年1月5日 上午11:30:39 * @description :文本中的emojb字符处理为表情图片 */ public class spanstringutils { public static spannablestring getemotioncontent(int emotion_map_type,final context context, final textview tv, string source) { spannablestring spannablestring = new spannablestring(source); resources res = context.getresources(); string regexemotion = "\\[([\u4e00-\u9fa5\\w])+\\]"; pattern patternemotion = pattern.compile(regexemotion); matcher matcheremotion = patternemotion.matcher(spannablestring); while (matcheremotion.find()) { // 获取匹配到的具体字符 string key = matcheremotion.group(); // 匹配字符串的开始位置 int start = matcheremotion.start(); // 利用表情名字获取到对应的图片 integer imgres = emotionutils.getimgbyname(emotion_map_type,key); if (imgres != null) { // 压缩表情图片 int size = (int) tv.gettextsize()*13/10; bitmap bitmap = bitmapfactory.decoderesource(res, imgres); bitmap scalebitmap = bitmap.createscaledbitmap(bitmap, size, size, true); imagespan span = new imagespan(context, scalebitmap); spannablestring.setspan(span, start, start + key.length(), spannable.span_exclusive_exclusive); } } return spannablestring; } }
代码相对比较简单,这里就不啰嗦啦。
3.3 表情面板的实现(viewpager+gridview)
这里的自然就是使用到viewpager和gridview相结合实现多界面滑动的效果,参考了微信的实现,每页都是一个gridview显示20个表情,末尾还有一个删除按钮。实现思路入下:
利用viewpager作为滑动控件,同时结合gridview来布局每个表情,gridview会显示3行7列,共21个item,即每页都是一个gridview显示20个表情,末尾还有一个删除按钮。为了让item能大小合适,我们在这里利用动态计算的方式设置宽高,因为屏幕宽度各有不同。每个item宽度的计算方式,由(屏幕的宽度-左右边距大小(如果有的话就减去)-每个item间隙距离)/7,最终便得到item的宽度。至于表情面板的高度=(item宽度*3+间隙*6),即可获取中高度,为什么间隙*6?
这里并没有什么计算原理,纯粹是我在调试的过程中试出来的值,这个值相对比较合理,也比较美观,当然大家也可根据自己需要调整。最后就是有多少页的问题了,这里可以通过for循环表情集合的所有元素,把每次循环获取的元素添加到一个集合中,每次判断集合是否满20个元素,每满20个集合就利用该集合去创建一个gridview的表情面板view,同时再新建一个集合存放新获取到的元素,以次循环。最后把所有表情生成的一个个gridview放到一个总view集合中,利用viewpager显示即可。要注意的是在gridview的适配器和点击事件中,都利用position判断,如果是最后一个就进行特殊的显示(删除按钮)和点击处理。
package com.zejian.emotionkeyboard.fragment; import android.os.bundle; import android.support.v4.view.viewpager; import android.view.layoutinflater; import android.view.view; import android.view.viewgroup; import android.widget.gridview; import android.widget.linearlayout; import com.zejian.emotionkeyboard.r; import com.zejian.emotionkeyboard.adapter.emotiongridviewadapter; import com.zejian.emotionkeyboard.adapter.emotionpageradapter; import com.zejian.emotionkeyboard.emotionkeyboardview.emojiindicatorview; import com.zejian.emotionkeyboard.utils.displayutils; import com.zejian.emotionkeyboard.utils.emotionutils; import com.zejian.emotionkeyboard.utils.globalonitemclickmanagerutils; import java.util.arraylist; import java.util.list; /** * created by zejian * time 16/1/5 下午4:32 * description:可替换的模板表情,gridview实现 */ public class emotiomcomplatefragment extends basefragment { private emotionpageradapter emotionpagergvadapter; private viewpager vp_complate_emotion_layout; private emojiindicatorview ll_point_group;//表情面板对应的点列表 private int emotion_map_type; /** * 创建与fragment对象关联的view视图时调用 * @param inflater * @param container * @param savedinstancestate * @return */ @override public view oncreateview(layoutinflater inflater, viewgroup container, bundle savedinstancestate) { view rootview = inflater.inflate(r.layout.fragment_complate_emotion, container, false); initview(rootview); initlistener(); return rootview; } /** * 初始化view控件 */ protected void initview(view rootview){ vp_complate_emotion_layout = (viewpager) rootview.findviewbyid(r.id.vp_complate_emotion_layout); ll_point_group= (emojiindicatorview) rootview.findviewbyid(r.id.ll_point_group); //获取map的类型 emotion_map_type=args.getint(fragmentfactory.emotion_map_type); initemotion(); } /** * 初始化监听器 */ protected void initlistener(){ vp_complate_emotion_layout.addonpagechangelistener(new viewpager.onpagechangelistener() { int oldpagerpos=0; @override public void onpagescrolled(int position, float positionoffset, int positionoffsetpixels) { } @override public void onpageselected(int position) { ll_point_group.playbystartpointtonext(oldpagerpos,position); oldpagerpos=position; } @override public void onpagescrollstatechanged(int state) { } }); } /** * 初始化表情面板 * 思路:获取表情的总数,按每行存放7个表情,动态计算出每个表情所占的宽度大小(包含间距), * 而每个表情的高与宽应该是相等的,这里我们约定只存放3行 * 每个面板最多存放7*3=21个表情,再减去一个删除键,即每个面板包含20个表情 * 根据表情总数,循环创建多个容量为20的list,存放表情,对于大小不满20进行特殊 * 处理即可。 */ private void initemotion() { // 获取屏幕宽度 int screenwidth = displayutils.getscreenwidthpixels(getactivity()); // item的间距 int spacing = displayutils.dp2px(getactivity(), 12); // 动态计算item的宽度和高度 int itemwidth = (screenwidth - spacing * 8) / 7; //动态计算gridview的总高度 int gvheight = itemwidth * 3 + spacing * 6; list<gridview> emotionviews = new arraylist<>(); list<string> emotionnames = new arraylist<>(); // 遍历所有的表情的key for (string emojiname : emotionutils.getemojimap(emotion_map_type).keyset()) { emotionnames.add(emojiname); // 每20个表情作为一组,同时添加到viewpager对应的view集合中 if (emotionnames.size() == 20) { gridview gv = createemotiongridview(emotionnames, screenwidth, spacing, itemwidth, gvheight); emotionviews.add(gv); // 添加完一组表情,重新创建一个表情名字集合 emotionnames = new arraylist<>(); } } // 判断最后是否有不足20个表情的剩余情况 if (emotionnames.size() > 0) { gridview gv = createemotiongridview(emotionnames, screenwidth, spacing, itemwidth, gvheight); emotionviews.add(gv); } //初始化指示器 ll_point_group.initindicator(emotionviews.size()); // 将多个gridview添加显示到viewpager中 emotionpagergvadapter = new emotionpageradapter(emotionviews); vp_complate_emotion_layout.setadapter(emotionpagergvadapter); linearlayout.layoutparams params = new linearlayout.layoutparams(screenwidth, gvheight); vp_complate_emotion_layout.setlayoutparams(params); } /** * 创建显示表情的gridview */ private gridview createemotiongridview(list<string> emotionnames, int gvwidth, int padding, int itemwidth, int gvheight) { // 创建gridview gridview gv = new gridview(getactivity()); //设置点击背景透明 gv.setselector(android.r.color.transparent); //设置7列 gv.setnumcolumns(7); gv.setpadding(padding, padding, padding, padding); gv.sethorizontalspacing(padding); gv.setverticalspacing(padding * 2); //设置gridview的宽高 viewgroup.layoutparams params = new viewgroup.layoutparams(gvwidth, gvheight); gv.setlayoutparams(params); // 给gridview设置表情图片 emotiongridviewadapter adapter = new emotiongridviewadapter(getactivity(), emotionnames, itemwidth,emotion_map_type); gv.setadapter(adapter); //设置全局点击事件 gv.setonitemclicklistener(globalonitemclickmanagerutils.getinstance(getactivity()).getonitemclicklistener(emotion_map_type)); return gv; } }
注释非常清晰哈。我就不啰嗦了。但这有个要注意的是在for循环时是通过emotionutils的getemojimap(emotion_map_type).keyset()获取集合,这也印证前面我们所说的emotiomcomplatefragment内部是通过集合标志判断集合类型,最终获取到所需的集合数据,也就生成了不同表情类型的面板。
3.4 表情的输入框插入和删除
思路:在表情框输入一个表情实际上是在当前光标位置插入一个表情,添加完表情后再把当前光标移动到表情之后,所以我们首先要获取到光标到首位置,这个可以利用edittext.setselectionstart()方法,添加完表情后要设置光标的位置到表情之后,这个可以使用edittext.setselection(position)方法。当然如果点击的是删除按钮,那么直接调用系统的 delete 按钮事件即可。下面直接上代码:
// 点击的是表情 emotiongridviewadapter emotiongvadapter = (emotiongridviewadapter) itemadapter; if (position == emotiongvadapter.getcount() - 1) { // 如果点击了最后一个回退按钮,则调用删除键事件 medittext.dispatchkeyevent(new keyevent( keyevent.action_down, keyevent.keycode_del)); } else { // 如果点击了表情,则添加到输入框中 string emotionname = emotiongvadapter.getitem(position); // 获取当前光标位置,在指定位置上添加表情图片文本 int curposition = medittext.getselectionstart(); stringbuilder sb = new stringbuilder(medittext.gettext().tostring()); sb.insert(curposition, emotionname); // 特殊文字处理,将表情等转换一下 medittext.settext(spanstringutils.getemotioncontent(emotion_map_type, mcontext, medittext, sb.tostring())); // 将光标设置到新增完表情的右侧 medittext.setselection(curposition + emotionname.length()); }
这里要理解一点就是让控件调用系统事件的方法为edittext.displatchkeyevent(new keyevent(action, code));其中action就是动作,用action_down按下动作就可以了而
code为按钮事件码,删除对应的就是keycode_del。
4.表情点击事件全局监听的实现
上面弄明白了表情的输入与删除操作后,我们就要考虑一个问题了,那就是在哪里设置监听?直接在创建gridview时,这个确实行得通,不过我们还要再考虑一个问题,那就是如果我们存在多个gridview呢?多复制几遍咯。但我们是高级工程师对吧,这样重复代码显然是不可出现在我们眼前的,因此这里我们决定使用全局监听来设置点击事件,当然这个并非我想到的,这个是在github开源项目我在阅读源码时,发现的,这种方式挺不错,我就拿来用咯。直接上代码:
package com.zejian.emotionkeyboard.utils; import android.content.context; import android.view.keyevent; import android.view.view; import android.widget.adapterview; import android.widget.edittext; import com.zejian.emotionkeyboard.adapter.emotiongridviewadapter; /** * created by zejian * time 16/1/8 下午5:05 * description:点击表情的全局监听管理类 */ public class globalonitemclickmanagerutils { private static globalonitemclickmanagerutils instance; private edittext medittext;//输入框 private static context mcontext; public static globalonitemclickmanagerutils getinstance(context context) { mcontext=context; if (instance == null) { synchronized (globalonitemclickmanagerutils.class) { if(instance == null) { instance = new globalonitemclickmanagerutils(); } } } return instance; } public void attachtoedittext(edittext edittext) { medittext = edittext; } public adapterview.onitemclicklistener getonitemclicklistener(final int emotion_map_type) { return new adapterview.onitemclicklistener() { @override public void onitemclick(adapterview<?> parent, view view, int position, long id) { object itemadapter = parent.getadapter(); if (itemadapter instanceof emotiongridviewadapter) { // 点击的是表情 emotiongridviewadapter emotiongvadapter = (emotiongridviewadapter) itemadapter; if (position == emotiongvadapter.getcount() - 1) { // 如果点击了最后一个回退按钮,则调用删除键事件 medittext.dispatchkeyevent(new keyevent( keyevent.action_down, keyevent.keycode_del)); } else { // 如果点击了表情,则添加到输入框中 string emotionname = emotiongvadapter.getitem(position); // 获取当前光标位置,在指定位置上添加表情图片文本 int curposition = medittext.getselectionstart(); stringbuilder sb = new stringbuilder(medittext.gettext().tostring()); sb.insert(curposition, emotionname); // 特殊文字处理,将表情等转换一下 medittext.settext(spanstringutils.getemotioncontent(emotion_map_type, mcontext, medittext, sb.tostring())); // 将光标设置到新增完表情的右侧 medittext.setselection(curposition + emotionname.length()); } } } }; } }
代码相当简单,就是创建一个adapterview.onitemclicklistener的全局监听器,然后在里面实现表情的输入与删除操作即可。那么怎么使用呢?我们在emotionmainfragment类中使用创建globalonitemclickmanagerutils,并绑定编辑框,部分代码如下:
//创建全局监听 globalonitemclickmanagerutils globalonitemclickmanager= globalonitemclickmanagerutils.getinstance(getactivity()); if(isbindtobaredittext){ //绑定当前bar的编辑框 globalonitemclickmanager.attachtoedittext(bar_edit_text); }else{ // false,则表示绑定contentview, 此时外部提供的contentview必定也是edittext globalonitemclickmanager.attachtoedittext((edittext) contentview); memotionkeyboard.bindtoedittext((edittext)contentview); }
绑定的编辑框可能有两种情况,可能是bar上的编辑框,但也可能是contentview,此时外部提供的contentview是edittext(可以直接理解为是把之前所说的listview替换成了edittext)。最后别忘记在emotiomcomplatefragment类种创建gridview时注册该监听器,
//设置全局点击事件 gv.setonitemclicklistener(globalonitemclickmanagerutils.getinstance(getactivity()).getonitemclicklistener(emotion_map_type));
好了,到此本篇也完结了,源码下载方式:源码下载:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。