
本文共 6235 字,大约阅读时间需要 20 分钟。
TextView中实现图文混排主要采用的是SpannableStringBuilder、ImageSpan、正则表达式协同完成,具体的实现,自己去百度吧。
今天主要想说的是在图文混排的时候,如果TextView设置了最大长度并且textView.setEllipsize(TruncateAt.END);,由于ImageSpan的作用,这时TextView的Ellipsize自动截断功
能失效,会出现图片截断的情况。如何解决呢?
答案很简单,用TextUtils.ellipsize 先计算出截断后的字符串,然后在setText就OK了
RelativeLayout mainLy = (RelativeLayout) findViewById(R.id.mainLy); TextView tx = new TextView(this); tx.setMaxWidth(200); tx.setSingleLine(); tx.setEllipsize(TruncateAt.END); mainLy.addView(tx); String txt = "I'm a text!![face01][face01][face01][face01][face01][face01][face01][face01]"; String ellipsizeStr = (String) TextUtils.ellipsize(txt, (TextPaint) tx.getPaint(), 200, TextUtils.TruncateAt.END); Log.e("tim", "ellipsizeStr: "+ ellipsizeStr); SmileyParser parser = new SmileyParser(this); CharSequence cs = parser.replace(ellipsizeStr); tx.setText(cs);
同样利用TextUtils.ellipsize也可以解决Android TextView 在截断字符串时出现省略号有时为一个点的情况。先利用TextUtils.ellipsize计算出截断后的String,然后在setText就可以了。
下面关于截取字符串做个延伸
// 监听布局变化,直接获取显示的长度 txtDescription.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { if(availableTextWidth == 0&&txtDescription.getWidth()>0){ TextPaint paint = txtDescription.getPaint(); int paddingLeft = txtDescription.getPaddingLeft(); int paddingRight= txtDescription.getPaddingRight(); int bufferWidth =(int) paint.getTextSize()*3;//缓冲区长度,空出两个字符的长度来给最后的省略号及图片 // 计算出2行文字所能显示的长度 availableTextWidth = (txtDescription.getWidth() - paddingLeft - paddingRight) * LINE_COUNT- bufferWidth; // 根据长度截取出剪裁后的文字 String ellipsizeStr = (String) TextUtils.ellipsize(DESCRIPTION, (TextPaint) paint, availableTextWidth, TextUtils.TruncateAt.END); String imgTag = "img"; int start = ellipsizeStr.length(); int end = start + imgTag.length(); SpannableStringBuilder ssBuilder = new SpannableStringBuilder(ellipsizeStr+imgTag); // 插入图片 Drawable drawable = getResources().getDrawable(R.drawable.video); drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight()); ImageSpan imgSpan = new ImageSpan(drawable,ImageSpan.ALIGN_BASELINE); ssBuilder.setSpan(imgSpan, start, end, SpannableStringBuilder.SPAN_EXCLUSIVE_EXCLUSIVE); txtDescription.setText(ssBuilder); if(Build.VERSION.SDK_INT>=16){ txtDescription.getViewTreeObserver().removeOnGlobalLayoutListener(this); }else{ txtDescription.getViewTreeObserver().removeGlobalOnLayoutListener(this); } } } });
截取字符串的函数 按照字节
编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字不被截半个,如“我ABC”4,应该截为“我AB”,输入“我ABC汉DEF”,6,应该输出为“我ABC”而不是“我ABC+汉的半个”。
分析
不能使用substring(beginIndex, endIndex),因为它 是返回的字符,题目要求的是字节
Returns a new string that is a substring of this string. The substring begins at the specified beginIndex and extends to the character at index endIndex - 1. Thus the length of the substring is endIndex-beginIndex. UTF- 8 和 GBK
UTF- 8是用以解决国际上字符的一种多字节编码,它对英文使用8位(即一个字节),中文使用24为(三个字节)来编码。
GBK是国家标准GB2312基础上扩容后兼容GB2312的标准。GBK的文字编码是用双字节来表示的,即不论中、英文字符均使用双字节来表示。
String x = "我";System.out.println(x.getBytes("utf-8").length);System.out.println(x.getBytes("GBK").length);/** * 输出 * 3 * 2 */
String s = "我ABC汗";System.out.println(new String(s.getBytes("GBK"), "GBK"));输出"我ABC汗"System.out.println(new String(s.getBytes(), "GBK"));乱码 鎴慉BC姹�System.out.println(new String(s.getBytes(), "utf8"));输出"我ABC汗" System.out.println(new String(s.getBytes("utf8"), "utf8"));输出"我ABC汗" System.out.println(new String(s.getBytes(), "ascii"));���ABC���可以看出默认使用 utf8 编码,然后 ascii 解码,英文正常,但是汉字是3个 分析
默认是utf8编码,所以不写没事。encode 和 decode 需要相同 记住 jvm 里面是 unicode,出来时候才会具体编码
解决方法
思路就是从 String 的每个字符 遍历,然后如果是中文的,就-2,如果是英文的,-1。
String.valueOf(b[i]).getBytes().length > 1判断是否是中文
static String split(String orignal, int count) { // count 表示多少个字节 // 1个中文字符是2个字节 char[] b = orignal.toCharArray(); // constructor need character's no, so <= byte's count StringBuilder sb = new StringBuilder(count); for (int i = 0; i < b.length; i++) { if (count <= 0) { break; } String temp = String.valueOf(b[i]); // System.out.println(temp + "->" + temp.getBytes().length); // Chinese character if (temp.getBytes().length > 1) { count -= 2; if (count < 0) { break; } } else { count--; } sb.append(temp); } return sb.toString();}改进方法
static String otherSplit(String original, int count) { StringBuilder sb = new StringBuilder(); // 这儿是 count 和 i 两头并进 // i 每次都 +1 ,每次都会至少找到1个字符(英文1个,中文2个) // 如果是中文字符,count 就-1 // 对于半个中文 for (int i = 0; i < count - 1; i++) { char c = original.charAt(i); if (String.valueOf(c).getBytes().length > 1) { count--; } sb.append(c); } return sb.toString();}方法有问题
String s = "我ABCD爱哈BAC汗";System.out.println(otherSplit(s, 6));//我ABCSystem.out.println(split(s, 6));//我ABCD对于最后一个英文字符,会少一个字母
测试
public static void main(String[] args) throws UnsupportedEncodingException { String s = "我额A爱哈BAC汗"; System.out.println(otherSplit(s, 2)); System.out.println(otherSplit(s, 3)); System.out.println(otherSplit(s, 4)); System.out.println(otherSplit(s, 5)); System.out.println(otherSplit(s, 6)); System.out.println(otherSplit(s, 9)); System.out.println(split(s, 2)); System.out.println(split(s, 3)); System.out.println(split(s, 4)); System.out.println(split(s, 5)); System.out.println(split(s, 6)); System.out.println(split(s, 9));}/** 我我我额我额我额A我额A爱哈我我我额我额A我额A我额A爱哈 */判断是否是中文
可以通过 Character.getNumericValue 返回-1 也可以根据字节数,中文是多个字节,英文1个字节 根据字节得到的数字,中文是负数,英文和符号在0-256之间getNumericValue() only applies to characters that represent numbers, such as the digits ‘0’ through ‘9’. As a convenience, it also treats the ASCII letters as if they were digits in a base-36 number system (so ‘A’ is 10 and ‘Z’ is 35).
转载地址:https://blog.csdn.net/jdsjlzx/article/details/90033791 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!
发表评论
最新留言
关于作者
