Answers:
根据您需要的间距,这可能会有所帮助。这是与TextView中的字母间距远程相关的唯一内容。
编辑: 请参阅下面的@JerabekJakub响应,以获取更新的更好的方法(从api 21(棒棒糖)开始)
letterSpacing
vs textScaleX
巨大的区别
从API 21开始,可以选择设置字母间距。您可以调用方法setLetterSpacing或使用XML属性设置为letterSpacing。
"1.2dp" in attribute "letterSpacing" cannot be converted to float."
letterSpacing
,在AS预览中没有更改。我必须在物理设备上实际运行该应用程序才能看到更改。
更多的空间:
android:letterSpacing="0.1"
更小的空间:
android:letterSpacing="-0.07"
letterSpacing
根据developer.android.com/reference/android/widget/…
该答案基于Pedro的答案,但已进行了调整,因此,如果已经设置了text属性,它也可以使用:
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);
null
办理登机手续applyLetterSpacing
,但除此之外,还需要救生员!
在API> = 21之后,TextView提供了一个名为inbuild的方法 setLetterSpacing
检查更多
要将HTML文本嵌入到textview中,可以使用Html.fromHTML()
语法。您将从http://developer.android.com/reference/android/text/Html.html#fromHtml%28java.lang.String%29获得更多信息
android:letterSpacing=".05"
类的程序中的.05大约为“ 50”