Textview에서 문자 간격을 변경하는 방법은 무엇입니까? 도움이 될까요? (코드에서 webview를

텍스트보기에서 문자 간격을 어떻게 변경할 수 있습니까? HTML 텍스트가 있으면 도움이 될까요? (코드에서 webview를 사용할 수 없습니다).

추신 : HTML 텍스트로 textview에서 내 서체를 사용하고 있습니다.



답변

android : textScaleX 확인

필요한 간격에 따라 도움이 될 수 있습니다. 이것이 TextView의 문자 간격과 원격으로 관련된 유일한 것입니다.

편집 : API 21 (Lollipop)으로 시작하는 업데이트되고 더 나은 방법은 아래 @JerabekJakub의 응답을 참조 하십시오.


답변

API 21부터는 옵션 세트 문자 간격이 있습니다. setLetterSpacing 메소드를 호출 하거나 letterSpacing 속성을 사용하여 XML로 설정할 수 있습니다 .


답변

더 많은 공간:

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


답변

API> = 21 이후에는 TextView에서 제공하는 inbuild 메서드가 호출됩니다. setLetterSpacing

자세한 내용은 이것을 확인하십시오


답변

TextView이 문제 를 확장 하고 해결 하는 사용자 지정 클래스를 만들었습니다. 여기 에서 내 대답을 확인 하십시오 =)


답변

Android는 이러한 기능을 지원하지 않으므로 FontCreator를 사용하여 수동으로 수행 할 수 있습니다. 글꼴 수정을위한 좋은 옵션이 있습니다. 이 도구를 사용하여 사용자 지정 글꼴을 만들었습니다. 시간이 좀 걸리더라도 프로젝트에서 항상 사용할 수 있습니다.