如何更改文本视图中的字母间距?

如何在文本视图中更改字母间距? 如果我有 HTML 文本它会有帮助吗(我不能在我的代码中使用 webview)。

另外,我在文本视图中使用了我自己的字体和 HTML 文本。

187368 次浏览

看看 Android: textScaleX

这可能会有所帮助,具体取决于您需要多少间隔。这是唯一与 TextView 中的字母间距有关的东西。

编辑: < em > 请参阅下面的 @ JerabekJakub 的回应以获得更新的、更好的从 api 21(Lollipop)开始执行此操作的方法

我构建了一个自定义类,它扩展了 TextView并解决了这个问题... ... 看看我的答案 给你 =)

由于 android 不支持这样的操作,所以可以使用 FontCreator 手动完成。它有很好的字体修改选项。 我使用这个工具来建立一个自定义字体,即使它需要一些时间,但你总是可以在您的项目中使用它。

这个答案是基于佩德罗的答案,但经过了调整,所以如果文本属性已经设置,它也可以工作:

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);

要在文本视图中嵌入 HTML 文本,可以使用 Html.fromHTML()语法。 更多信息,请访问 http://developer.android.com/reference/android/text/Html.html # from Html% 28java.lang.String% 29”rel = “ nofollow norefrer”> http://developer.android.com/reference/android/text/html.html#fromhtml%28java.lang

因为 API 21有一个选项集字母间距。您可以调用方法 字母间距,或者使用属性 字母间距在 XML 中设置它。

在 API > = 21之后,TextView 提供了一个名为 setLetterSpacing的内建方法

查看此 了解更多信息

更大的空间:

  android:letterSpacing="0.1"

减少空间:

 android:letterSpacing="-0.07"