国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

Android 解決TextView排版參差不齊的問題

2019-12-12 03:54:39
字體:
供稿:網(wǎng)友

 Android 解決TextView排版參差不齊的問題

在app中,展示數(shù)據(jù)時,里面有漢字、數(shù)字、特殊字符時,由于全角、半角問題導(dǎo)致TextView參差不齊。在網(wǎng)上找了許多,半角轉(zhuǎn)全角并沒什么用,還有其他自定義TextView都有問題。最后終于找到一個,就像Word一樣,可以使文字左右兩端對齊:

package com.monkey.monkeymushroom.view;import android.content.Context;import android.graphics.Canvas;import android.graphics.Paint;import android.text.Layout;import android.text.StaticLayout;import android.text.TextPaint;import android.util.AttributeSet;import android.widget.TextView;/** * 解決文字排版混亂參差不齊的問題 */public class JustifyTextView extends TextView { private int mLineY; private int mViewWidth; public static final String TWO_CHINESE_BLANK = " "; public JustifyTextView(Context context, AttributeSet attrs) {  super(context, attrs); } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) {  super.onLayout(changed, left, top, right, bottom); } @Override protected void onDraw(Canvas canvas) {  TextPaint paint = getPaint();  paint.setColor(getCurrentTextColor());  paint.drawableState = getDrawableState();  mViewWidth = getMeasuredWidth();  String text = getText().toString();  mLineY = 0;  mLineY += getTextSize();  Layout layout = getLayout();  // layout.getLayout()在4.4.3出現(xiàn)NullPointerException  if (layout == null) {   return;  }  Paint.FontMetrics fm = paint.getFontMetrics();  int textHeight = (int) (Math.ceil(fm.descent - fm.ascent));  textHeight = (int) (textHeight * layout.getSpacingMultiplier() + layout    .getSpacingAdd());  //解決了最后一行文字間距過大的問題  for (int i = 0; i < layout.getLineCount(); i++) {   int lineStart = layout.getLineStart(i);   int lineEnd = layout.getLineEnd(i);   float width = StaticLayout.getDesiredWidth(text, lineStart,     lineEnd, getPaint());   String line = text.substring(lineStart, lineEnd);   if (i < layout.getLineCount() - 1) {    if (needScale(line)) {     drawScaledText(canvas, lineStart, line, width);    } else {     canvas.drawText(line, 0, mLineY, paint);    }   } else {    canvas.drawText(line, 0, mLineY, paint);   }   mLineY += textHeight;  } } private void drawScaledText(Canvas canvas, int lineStart, String line, float lineWidth) {  float x = 0;  if (isFirstLineOfParagraph(lineStart, line)) {   String blanks = " ";   canvas.drawText(blanks, x, mLineY, getPaint());   float bw = StaticLayout.getDesiredWidth(blanks, getPaint());   x += bw;   line = line.substring(3);  }  int gapCount = line.length() - 1;  int i = 0;  if (line.length() > 2 && line.charAt(0) == 12288    && line.charAt(1) == 12288) {   String substring = line.substring(0, 2);   float cw = StaticLayout.getDesiredWidth(substring, getPaint());   canvas.drawText(substring, x, mLineY, getPaint());   x += cw;   i += 2;  }  float d = (mViewWidth - lineWidth) / gapCount;  for (; i < line.length(); i++) {   String c = String.valueOf(line.charAt(i));   float cw = StaticLayout.getDesiredWidth(c, getPaint());   canvas.drawText(c, x, mLineY, getPaint());   x += cw + d;  } } private boolean isFirstLineOfParagraph(int lineStart, String line) {  return line.length() > 3 && line.charAt(0) == ' '    && line.charAt(1) == ' '; } private boolean needScale(String line) {  if (line == null || line.length() == 0) {   return false;  } else {   return line.charAt(line.length() - 1) != '/n';  } }}

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 江安县| 台北县| 分宜县| 东源县| 青冈县| 红安县| 南召县| 苍梧县| 浪卡子县| 米林县| 磐安县| 石家庄市| 张家川| 安达市| 莱芜市| 上蔡县| 汕头市| 牟定县| 柳江县| 台安县| 望江县| 读书| 万荣县| 手机| 桑植县| 吴江市| 安多县| 陈巴尔虎旗| 察隅县| 库车县| 鸡西市| 郸城县| 兰考县| 谢通门县| 盐亭县| 江都市| 秦安县| 威信县| 永修县| 周宁县| 什邡市|