我正在开发一个应用程序。我正在使用自定义字体。 “.ttf”文件来自定义文本视图的字体。我使用代码:
Typeface tfArchitectsDaughter = Typeface.createFromAsset(getAssets(), "fonts/ArchitectsDaughter.ttf");
textview.setTypeface(tfArchitectsDaughter);
现在需要:我想让文字自定义如上所述,以及样式为.java文件中的 BOLD 。
如何做到这一点请建议。还有什么其他样式或定制可以在字体上进行建议。
答案 0 :(得分:15)
你可以用
来实现它textview.setTypeface(tfArchitectsDaughter, Typeface.BOLD);
注意:您也可以使用ITALIC
和BOLD_ITALIC
答案 1 :(得分:12)
使用SpannableString。 另请查看本教程。http://blog.stylingandroid.com/archives/177。
String tempString="Copyright";
TextView text=(TextView)findViewById(R.id.text);
SpannableString spanString = new SpannableString(tempString);
spanString.setSpan(new UnderlineSpan(), 0, spanString.length(), 0);
spanString.setSpan(new StyleSpan(Typeface.BOLD), 0, spanString.length(), 0);
spanString.setSpan(new StyleSpan(Typeface.ITALIC), 0, spanString.length(), 0);
text.setText(spanString);
您还可以在textview中为文本使用不同的颜色。
SpannableString text = new SpannableString("Lorem ipsum dolor sit amet");
// make "Lorem" (characters 0 to 5) red
text.setSpan(new ForegroundColorSpan(Color.RED), 0, 5, 0);
textView.setText(text, BufferType.SPANNABLE);
http://www.chrisumbel.com/article/android_textview_rich_text_spannablestring。该链接为您提供了使用spannable字符串进行样式设置的更多示例。
答案 2 :(得分:5)
您可以使用以下代码将文字设置为粗体
创建一个单独的文件作为style.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="boldText">
<item name="android:textStyle">bold|italic</item>
<item name="android:textColor">#FFFFFF</item>
</style>
<style name="normalText">
<item name="android:textStyle">normal</item>
<item name="android:textColor">#C0C0C0</item>
</style>
</resources>
并且在你的java文件中,如果你希望文本在行动之后变为粗体
Typeface tfArchitectsDaughter = Typeface.createFromAsset(getAssets(), "fonts/ArchitectsDaughter.ttf");
textview.setTypeface(tfArchitectsDaughter);
myTextView.setTextAppearance(getApplicationContext(), R.style.boldText);
答案 3 :(得分:0)
使用代码将文本粗体显示为:
TextView.setTextAppearance(getApplicationContext(), R.style.boldText);
答案 4 :(得分:0)
您可以将文字粗体显示为:
TextView.setTextAppearance(getApplicationContext(), R.style.boldText);