如何更改textview中的字母间距? 如果我有HTML文本会有帮助(我不能在我的代码中使用webview)。
P.S。我在textview中使用自己的字体和HTML文本。
答案 0 :(得分:205)
自API 21以来,有一个选项设置字母间距。您可以调用方法setLetterSpacing或使用属性letterSpacing在XML中设置它。
答案 1 :(得分:25)
这个答案是基于Pedro的答案,但经过调整,所以如果已经设置了文本属性,它也有效:
package nl.raakict.android.spc.widget;
import android.content.Context;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.style.ScaleXSpan;
import android.util.AttributeSet;
import android.widget.TextView;
public class LetterSpacingTextView extends TextView {
private float letterSpacing = LetterSpacing.BIGGEST;
private CharSequence originalText = "";
public LetterSpacingTextView(Context context) {
super(context);
}
public LetterSpacingTextView(Context context, AttributeSet attrs){
super(context, attrs);
originalText = super.getText();
applyLetterSpacing();
this.invalidate();
}
public LetterSpacingTextView(Context context, AttributeSet attrs, int defStyle){
super(context, attrs, defStyle);
}
public float getLetterSpacing() {
return letterSpacing;
}
public void setLetterSpacing(float letterSpacing) {
this.letterSpacing = letterSpacing;
applyLetterSpacing();
}
@Override
public void setText(CharSequence text, BufferType type) {
originalText = text;
applyLetterSpacing();
}
@Override
public CharSequence getText() {
return originalText;
}
private void applyLetterSpacing() {
if (this == null || this.originalText == null) return;
StringBuilder builder = new StringBuilder();
for(int i = 0; i < originalText.length(); i++) {
String c = ""+ originalText.charAt(i);
builder.append(c.toLowerCase());
if(i+1 < originalText.length()) {
builder.append("\u00A0");
}
}
SpannableString finalText = new SpannableString(builder.toString());
if(builder.toString().length() > 1) {
for(int i = 1; i < builder.toString().length(); i+=2) {
finalText.setSpan(new ScaleXSpan((letterSpacing+1)/10), i, i+1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}
}
super.setText(finalText, BufferType.SPANNABLE);
}
public class LetterSpacing {
public final static float NORMAL = 0;
public final static float NORMALBIG = (float)0.025;
public final static float BIG = (float)0.05;
public final static float BIGGEST = (float)0.2;
}
}
如果您想以编程方式使用它:
LetterSpacingTextView textView = new LetterSpacingTextView(context);
textView.setSpacing(10); //Or any float. To reset to normal, use 0 or LetterSpacingTextView.Spacing.NORMAL
textView.setText("My text");
//Add the textView in a layout, for instance:
((LinearLayout) findViewById(R.id.myLinearLayout)).addView(textView);
答案 2 :(得分:16)
根据您需要的间距,这可能会有所帮助。这是TextView中唯一与字母间距有关的东西。
修改 请参阅下面的@JerabekJakub's response,了解更新,更好的方法,从api 21开始(棒棒糖)
答案 3 :(得分:13)
更多空间:
android:letterSpacing="0.1"
更少的空间:
android:letterSpacing="-0.07"
答案 4 :(得分:11)
在API&gt; = 21之后,TextView提供了一种名为setLetterSpacing
check this了解更多
答案 5 :(得分:9)
我构建了一个扩展TextView
的自定义类并解决了这个问题...查看我的答案here =)
答案 6 :(得分:0)
由于android不支持这样的事情,你可以使用FontCreator手动完成。它有很好的字体修改选项。 我使用这个工具来构建自定义字体,即使它需要一些时间,但你总是可以在你的项目中使用它。
答案 7 :(得分:-1)
要在文本视图中嵌入HTML文本,您可以使用Html.fromHTML()
语法。
您将从http://developer.android.com/reference/android/text/Html.html#fromHtml%28java.lang.String%29