답변:
textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.NORMAL);
이전 서체를 유지하려면
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC)
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL);
에서 굵은 체 또는 이탤릭체 스타일을 제거하지 않습니다 TextView
. 당신은 그것을 사용해야 textView.setTypeface(null, Typeface.NORMAL);
합니다.
textView.setTypeface(Typeface.create(textView.getTypeface(), Typeface.NORMAL), Typeface.NORMAL);
TextView
굵은 기울임 꼴 또는 기울임 꼴로 설정하십시오.
textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
tv.setTypeface(Typeface.create(tv.getTypeface(), Typeface.NORMAL));
tv.setTypeface(null, Typeface.BOLD);
는 이것이 동일하지 않습니다 (기존의 서체 스타일을 지우십시오)?
다음을 사용하여 프로그래밍 방식으로 수행 할 수 있습니다 setTypeface()
.
textView.setTypeface(null, Typeface.NORMAL); // for Normal Text
textView.setTypeface(null, Typeface.BOLD); // for Bold only
textView.setTypeface(null, Typeface.ITALIC); // for Italic
textView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and Italic
다음 <TextView />
과 같이 XML 파일에서 직접 설정할 수 있습니다 .
android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"
with in Java and without using XML
그건 그렇고 다른 사람들에게도 도움이 될 것입니다.
두 가지 옵션이 있습니다.
옵션 1 (굵게, 기울임 꼴 및 밑줄에만 해당) :
String s = "<b>Bolded text</b>, <i>italic text</i>, even <u>underlined</u>!"
TextView tv = (TextView)findViewById(R.id.THE_TEXTVIEW_ID);
tv.setText(Html.fromHtml(s));
옵션 2 :
스패너 블 사용 ; 더 복잡하지만 텍스트 속성 (굵게 / 이탈리아뿐 아니라 색상)을 동적으로 수정할 수 있습니다.
typeFace
사용하면 전체 텍스트 하나의 스타일을 설정할 수 있습니다.
프로그래밍 방식으로 사용할 수 있습니다 setTypeface()
방법을 방식으로 .
아래는 기본 서체 코드입니다
textView.setTypeface(null, Typeface.NORMAL); // for Normal Text
textView.setTypeface(null, Typeface.BOLD); // for Bold only
textView.setTypeface(null, Typeface.ITALIC); // for Italic
textView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and Italic
그리고 사용자 정의 서체 를 설정하려면 :
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL); // for Normal Text
textView.setTypeface(textView.getTypeface(), Typeface.BOLD); // for Bold only
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC); // for Italic
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC); // for Bold and Italic
다음 <TextView />
과 같이 XML 파일에서 직접 설정할 수 있습니다 .
android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"
또는 자산에서 즐겨 찾기 글꼴을 설정할 수 있습니다. 자세한 내용은 링크를 참조하십시오
TextView text = (TextView)findViewById(R.id.THE_TEXTVIEW_ID);
이제 textview
속성을 설정하십시오 .
text.setTypeface(null, Typeface.BOLD); //-- for only bold the text
text.setTypeface(null, Typeface.BOLD_ITALIC); //-- for bold & italic the text
text.setTypeface(null, Typeface.ITALIC); // -- for italic the text
이를 수행하는 표준 방법은 사용자 정의 스타일을 사용하는 것입니다. 전의-
다음을 styles.xml
추가하십시오.
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="MyApp.TextAppearance.LoginText">
<item name="android:textStyle">bold|italic</item>
</style>
이 스타일을 다음 TextView
과 같이 적용하십시오 .
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/MyApp.TextAppearance.LoginText" />
당신이 할 수있는 한 가지 방법은 다음과 같습니다.
myTextView.setTypeface(null, Typeface.ITALIC);
myTextView.setTypeface(null, Typeface.BOLD_ITALIC);
myTextView.setTypeface(null, Typeface.BOLD);
myTextView.setTypeface(null, Typeface.NORMAL);
이전 서체를 유지하고 이전에 적용된 것을 잃고 싶지 않은 경우 다른 옵션 :
myTextView.setTypeface(textView.getTypeface(), Typeface.NORMAL);
myTextView.setTypeface(textView.getTypeface(), Typeface.BOLD);
myTextView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
myTextView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
다음과 같이 시도해보십시오.
<string name="title"><u><b><i>Your Text</i></b></u></string>
스타일 선택 기준에 따라 가장 쉬운 방법은 다음과 같습니다.
String pre = "", post = "";
if(isBold){
pre += "<b>"; post += "</b>";
}
if(isItalic){
pre += "<i>"; post += "</i>";
}
if(isUnderline){
pre += "<u>"; post += "</u>";
}
textView.setText(Html.fromHtml(pre + editText.getText().toString()+ post));
// you can also use it with EidtText
editText.setText(Html.fromHtml(pre + editText.getText().toString()+ post));
사용자 정의 글꼴을 사용하고 싶기 때문에 몇 가지 답변 만 결합하면 효과가 있습니다. 분명히 내 layout.xml
좋아하는 설정은 android:textStlyle="italic"
AOS에 의해 무시되었습니다. 마지막으로 다음과 같이해야했습니다 strings.xml
. 대상 문자열 에서 다음과 같이 선언되었습니다.
<string name="txt_sign"><i>The information blah blah ...</i></string>
그런 다음 코드에서 추가로 :
TextView textSign = (TextView) findViewById(R.id.txt_sign);
FontHelper.setSomeCustomFont(textSign);
textSign.setTypeface(textSign.getTypeface(), Typeface.ITALIC);
나는 Spannable
옵션을 시도하지 않았지만 (나는 반드시 작동한다고 가정한다)
textSign.setText(Html.fromHtml(getString(R.string.txt_sign)))
효과가 없었습니다. 또한 나는를 제거하는 경우 italic tag
에서 strings.xml
떠나는 setTypeface()
그 중 하나에는 영향을 미치지 않습니다 혼자. 까다로운 Android ...
그리고 여기에 설명 된 것처럼 Android Developers String Resources 스타일이 지정된 텍스트 리소스에 매개 변수를 사용해야하는 경우 여는 괄호를 피해야합니다
<resources>
<string name="welcome_messages">Hello, %1$s! You have <b>%2$d new messages</b>.</string>
</resources>
그리고 formatHtml (string)을 호출하십시오.
Resources res = getResources();
String text = String.format(res.getString(R.string.welcome_messages), username, mailCount);
CharSequence styledText = Html.fromHtml(text);
가장 좋은 방법은 그것을 정의하는 것입니다. styles.xml
<style name="common_txt_style_heading" parent="android:style/Widget.TextView">
<item name="android:textSize">@dimen/common_txtsize_heading</item>
<item name="android:textColor">@color/color_black</item>
<item name="android:textStyle">bold|italic</item>
</style>
그리고 그것을 업데이트하십시오. TextView
<TextView
android:id="@+id/txt_userprofile"
style="@style/common_txt_style_heading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/margin_small"
android:text="@string/some_heading" />
아래 예를 사용하여 다른 서체를 설정할 수 있습니다-
textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
또는 다른 글꼴과 서체를 설정하려는 경우. 자산 또는 원시 폴더에 추가 한 다음처럼 사용하십시오.
Typeface face= Typeface.createFromAsset(getAssets(), "font/font.ttf");
tv1.setTypeface(face);
Typeface face1= Typeface.createFromAsset(getAssets(), "font/font1.ttf");
tv2.setTypeface(face1);