Android实现中文按拼音排序方法
更新时间:2016年03月14日 16:19:02 作者:gqdy365
这篇文章主要为大家详细介绍了Android实现中文按拼音排序方法,很实用,感兴趣的小伙伴们可以参考一下
本文的需求是将一组数据按某一字段中文拼音排序,分享给大家Android实现中文按拼音排序方法,供大家参考,具体内容如下
1、Test测试类:
PinyinComparator comparator = new PinyinComparator(); Collections.sort(strList, comparator);
其中strList中放置了数据,可以是任何对象,但要对PinyinComparator中的compare进行对应的修改,我Demo中为String[]。
2、PinyinComparator排序类:
public class PinyinComparator implements Comparator<Object> { /** * 比较两个字符串 */ public int compare(Object o1, Object o2) { String[] name1 = (String[]) o1; String[] name2 = (String[]) o2; String str1 = getPingYin(name1[0]); String str2 = getPingYin(name2[0]); int flag = str1.compareTo(str2); return flag; } /** * 将字符串中的中文转化为拼音,其他字符不变 * * @param inputString * @return */ public String getPingYin(String inputString) { HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat(); format.setCaseType(HanyuPinyinCaseType.LOWERCASE); format.setToneType(HanyuPinyinToneType.WITHOUT_TONE); format.setVCharType(HanyuPinyinVCharType.WITH_V); char[] input = inputString.trim().toCharArray();// 把字符串转化成字符数组 String output = ""; try { for (int i = 0; i < input.length; i++) { // \\u4E00是unicode编码,判断是不是中文 if (java.lang.Character.toString(input[i]).matches( "[\\u4E00-\\u9FA5]+")) { // 将汉语拼音的全拼存到temp数组 String[] temp = PinyinHelper.toHanyuPinyinStringArray( input[i], format); // 取拼音的第一个读音 output += temp[0]; } // 大写字母转化成小写字母 else if (input[i] > 'A' && input[i] < 'Z') { output += java.lang.Character.toString(input[i]); output = output.toLowerCase(); } output += java.lang.Character.toString(input[i]); } } catch (Exception e) { Log.e("Exception", e.toString()); } return output; } }
以上就是本文的全部内容,希望对大家的学习有所帮助。
您可能感兴趣的文章:
- android实现汉字转拼音功能 带多音字识别
- Android实现ListView的A-Z字母排序和过滤搜索功能 实现汉字转成拼音
- android仿微信通讯录搜索示例(匹配拼音,字母,索引位置)
- Android开发实现的IntentUtil跳转多功能工具类【包含视频、音频、图片、摄像头等操作功能】
- android实用工具类分享(获取内存/检查网络/屏幕高度/手机分辨率)
- android开发教程之实现toast工具类
- 19个Android常用工具类汇总
- android 一些工具类汇总
- Android7.0 工具类:DiffUtil详解
- 非常实用的Android图片工具类
- Android开发之拼音转换工具类PinyinUtils示例
相关文章
Android带清除功能的输入框控件EditTextWithDel
这篇文章主要为大家详细介绍了Android带清除功能的输入框控件EditTextWithDel,感兴趣的小伙伴们可以参考一下2016-09-09Android System fastboot 介绍和使用教程
Fastboot是Android快速升级的一种方法,Fastboot的协议fastboot_protocol.txt在源码目录./bootable/bootloader/legacy下可以找到,本文给大家介绍Android System fastboot 介绍和使用教程,感兴趣的朋友一起看看吧2024-01-01Android studio实现PopupWindow弹出框效果
这篇文章主要为大家详细介绍了Android studio实现PopupWindow弹出框效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2021-10-10
最新评论