텍스트보기에서 문자 간격을 어떻게 변경할 수 있습니까? HTML 텍스트가 있으면 도움이 될까요? (코드에서 webview를 사용할 수 없습니다).
추신 : HTML 텍스트로 textview에서 내 서체를 사용하고 있습니다.
텍스트보기에서 문자 간격을 어떻게 변경할 수 있습니까? HTML 텍스트가 있으면 도움이 될까요? (코드에서 webview를 사용할 수 없습니다).
추신 : HTML 텍스트로 textview에서 내 서체를 사용하고 있습니다.
답변:
필요한 간격에 따라 도움이 될 수 있습니다. 이것이 TextView의 문자 간격과 원격으로 관련된 유일한 것입니다.
편집 : API 21 (Lollipop)으로 시작하는 업데이트되고 더 나은 방법은 아래 @JerabekJakub의 응답을 참조 하십시오.
letterSpacing
대 textScaleX
무슨 큰 차이
API 21부터는 옵션 세트 문자 간격이 있습니다. setLetterSpacing 메소드를 호출 하거나 letterSpacing 속성을 사용하여 XML로 설정할 수 있습니다 .
"1.2dp" in attribute "letterSpacing" cannot be converted to float."
letterSpacing
AS 미리보기에서 변경되지 않았습니다. 변경 사항을 확인하려면 실제 장치에서 실제로 앱을 실행해야했습니다.
더 많은 공간:
android:letterSpacing="0.1"
더 적은 공간 :
android:letterSpacing="-0.07"
이 답변은 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);
null
체크인이 필요 applyLetterSpacing
하지만 그 외에는 생명의 은인!
API> = 21 이후에는 TextView에서 제공하는 inbuild 메서드가 호출됩니다. setLetterSpacing
자세한 내용은 이것을 확인하십시오
텍스트 뷰에 HTML 텍스트를 포함하려면 Html.fromHTML()
구문 을 사용할 수 있습니다 . http://developer.android.com/reference/android/text/Html.html#fromHtml%28java.lang.String%29 에서 얻을 수있는 자세한 정보
android:letterSpacing=".05"
.05 일 것 어디 대략 "50"와 같은 프로그램에서 포토샵