사용자 지정 글꼴로 Spannable 개체 글꼴을 설정하는 방법
이전에로드 한 사용자 지정 글꼴로 글꼴을 설정하려는 Spannable 개체가 있습니다.
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/font_Name.ttf");
Spannable span1 = /*Spannable Item*/;
/// I want to set span1 to have tf font face???
/// Here where I want help.
편집 :
내 문제는 텍스트보기에 대해 두 가지 다른 사용자 정의 글꼴을 설정하여 Spannable로 작업하고 있다는 것입니다.
이것은 늦은 답변이지만 다른 사람들이 문제를 해결하는 데 도움이 될 것입니다.
다음 코드를 사용하십시오. (Bangla 및 Tamil 글꼴을 사용하고 있습니다)
TextView txt = (TextView) findViewById(R.id.custom_fonts);
txt.setTextSize(30);
Typeface font = Typeface.createFromAsset(getAssets(), "Akshar.ttf");
Typeface font2 = Typeface.createFromAsset(getAssets(), "bangla.ttf");
SpannableStringBuilder SS = new SpannableStringBuilder("আমারநல்வரவு");
SS.setSpan (new CustomTypefaceSpan("", font2), 0, 4,Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
SS.setSpan (new CustomTypefaceSpan("", font), 4, 11,Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
txt.setText(SS);
결과는 다음과 같습니다.
CustomTypefaceSpan 클래스 :
package my.app;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.text.TextPaint;
import android.text.style.TypefaceSpan;
public class CustomTypefaceSpan extends TypefaceSpan {
private final Typeface newType;
public CustomTypefaceSpan(String family, Typeface type) {
super(family);
newType = type;
}
@Override
public void updateDrawState(TextPaint ds) {
applyCustomTypeFace(ds, newType);
}
@Override
public void updateMeasureState(TextPaint paint) {
applyCustomTypeFace(paint, newType);
}
private static void applyCustomTypeFace(Paint paint, Typeface tf) {
int oldStyle;
Typeface old = paint.getTypeface();
if (old == null) {
oldStyle = 0;
} else {
oldStyle = old.getStyle();
}
int fake = oldStyle & ~tf.getStyle();
if ((fake & Typeface.BOLD) != 0) {
paint.setFakeBoldText(true);
}
if ((fake & Typeface.ITALIC) != 0) {
paint.setTextSkewX(-0.25f);
}
paint.setTypeface(tf);
}
}
CustomTypefaceSpan 클래스를 만듭니다.
import android.graphics.Paint;
import android.graphics.Typeface;
import android.text.TextPaint;
import android.text.style.MetricAffectingSpan;
public class CustomTypefaceSpan extends MetricAffectingSpan {
private final Typeface typeface;
public CustomTypefaceSpan(Typeface typeface) {
this.typeface = typeface;
}
@Override
public void updateDrawState(TextPaint ds) {
applyCustomTypeFace(ds, typeface);
}
@Override
public void updateMeasureState(TextPaint paint) {
applyCustomTypeFace(paint, typeface);
}
private static void applyCustomTypeFace(Paint paint, Typeface tf) {
paint.setTypeface(tf);
}
}
Android 프레임 워크가 여러 클래스에 걸쳐있는 것과 동일한 방식으로 사용합니다.
TextView textView = (TextView) findViewById(R.id.custom_fonts);
Typeface font = Typeface.createFromAsset(getAssets(), "Akshar.ttf");
Typeface font2 = Typeface.createFromAsset(getAssets(), "bangla.ttf");
SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder("আমারநல்வரவு");
spannableStringBuilder.setSpan (new CustomTypefaceSpan(font2), 0, 4,Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
spannableStringBuilder.setSpan (new CustomTypefaceSpan(font), 4, 11,Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
textView.setText(spannableStringBuilder);
이 답변은 Imran Rana의 답변을 기반으로하지만 TypefaceSpan
기능을 확장 한 다음 비활성화 하지 않습니다 . 직접 CustomTypefaceSpan
확장 MetricAffectingSpan
됩니다.
이 답변은 Imran Rana의 답변과 결함을 공유합니다. 스팬이 분할되지 않았습니다. 즉, 이렇게하면 (kotlin) :
val parcel = Parcel.obtain()
TextUtils.writeToParcel(spannableStringBuilder, parcel, 0)
parcel.setDataPosition(0)
val sequence = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(parcel)
parcel.recycle()
에 CustomTypefaceSpan
설정된 모든 객체 spannableStringBuilder
는 마샬링되거나 마샬링되지 않습니다.
CustomTypefaceSpan을 사용할 필요가 없습니다. 여기에 해결책이 있습니다.
/**
* setCustomFontTypeSpan
* @param context
* @param source
* @param startIndex
* @param endIndex
* @param font
* @return
*/
public static SpannableString setCustomFontTypeSpan(Context context, String
source, int startIndex, int endIndex, int font) {
final SpannableString spannableString = new SpannableString(source);
Typeface typeface = ResourcesCompat.getFont(context, font);
spannableString.setSpan(new StyleSpan(typeface.getStyle()),
startIndex,endIndex,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
return spannableString;
}
String source = "Hello world";
SpannableString string = setCustomFontTypeSpan(context, source, 6,
source.length(), R.font.open_sans_bold);
textView.setText(string);
Roboto를 사용하는 경우 생성자에서 다른 TypefaceSpan을 설정할 수 있습니다.
TypefaceSpan typefaceSpan = new TypefaceSpan("sans-serif-medium");
textView.setSpan(typefaceSpan, indexStart, textLength, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
당신을 설정하려고 Spannable
당신을 TextView
먼저 한 후, 당신에 서체를 할당하려고 TextView
와 myTextView.setTypeface(tf)
;
다음은 str이 전체 문자열이고 boldString이 굵게 만드는 데 필요한 부분 인 예입니다.
public static SpannableString getTextStyleSpan(String str, String boldString) {
SpannableString formated = new SpannableString(str);
int start1 = str.indexOf(boldString);
int end1 = start1 + colorString1.length();
formated.setSpan(new android.text.style.StyleSpan(android.graphics.Typeface.BOLD), start1, end1, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
return formated;
}
참고 URL : https://stackoverflow.com/questions/6612316/how-set-spannable-object-font-with-custom-font
'programing tip' 카테고리의 다른 글
mysql2 gem으로 앱을 설치하려고 할 때 오류 발생 (0) | 2020.11.29 |
---|---|
눈금을 날짜 형식으로 어떻게 변환 할 수 있습니까? (0) | 2020.11.29 |
UISegmentedControl에 대한 클릭 이벤트 정의 (0) | 2020.11.29 |
런타임에 node.js 버전 가져 오기 (0) | 2020.11.28 |
eval (parse (…))의 위험은 구체적으로 무엇입니까? (0) | 2020.11.28 |