Android TextView 自動換行問題(zz)

Android的TextView在顯示文字的時候有個問題就是一行還沒顯示滿就跳到下一行,緣由是:java

1) TextView在顯示中文的時候 標點符號不能顯示在一行的行首和行尾,若是一個標點符號恰好在一行的行尾,該標點符號就會連同前一個字符跳到下一行顯示;android

2)一個英文單詞不能被顯示在兩行中( TextView在顯示英文時,標點符號是能夠放在行尾的,但英文單詞也不能分開 );
git

若是隻是想讓標點符號能夠顯示在行尾,有一個簡單的方法就是在標點符號後加一個空格,則該標點符號就能夠顯示在行尾了;it

若是想要兩端對齊的顯示效果,有兩種方法:方法

1)修改Android源代碼;將frameworks/base/core/java/android/text下的StaticLayout.java文件中的以下代碼:next

if (c == ' ' || c == '/t' ||
((c == '.' || c == ',' || c == ':' || c == ';') &&
(j - 1 < here || !Character.isDigit(chs[j - 1 - start])) &&
(j + 1 >= next || !Character.isDigit(chs[j + 1 - start]))) ||
((c == '/' || c == '-') &&
(j + 1 >= next || !Character.isDigit(chs[j + 1 - start]))) ||
(c >= FIRST_CJK && isIdeographic(c, true) &&
j + 1 < next && isIdeographic(chs[j + 1 - start], false))) {
okwidth = w;
ok = j + 1;top

if (fittop < oktop)
oktop = fittop;
if (fitascent < okascent)
okascent = fitascent;
if (fitdescent > okdescent)
okdescent = fitdescent;
if (fitbottom > okbottom)
okbottom = fitbottom;
}英文

去掉就能夠了。去掉後標點符號能夠顯示在行首和行尾,英文單詞也能夠被分開在兩行中顯示。文件

相關文章
相關標籤/搜索