回答:
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
ちなみに質問をチェック他人にも参考になります。
次の2つのオプションがあります。
オプション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:
Spannableを使用します。より複雑ですが、テキスト属性を動的に変更できます(太字/斜体だけでなく、色も)。
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"
または、(アセットから)favフォントを設定できます。詳細については、リンクを参照してください
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" />
あなたができる1つの方法は:
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開発者の文字列リソーススタイル付きテキストリソースでパラメーターを使用する必要がある場合は、左角かっこをエスケープする必要があります
<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);
または、別のフォントとその書体を設定したい場合。アセットまたはrawフォルダーに追加して、次のように使用します
Typeface face= Typeface.createFromAsset(getAssets(), "font/font.ttf");
tv1.setTypeface(face);
Typeface face1= Typeface.createFromAsset(getAssets(), "font/font1.ttf");
tv2.setTypeface(face1);