设置TextView样式(粗体或斜体)
如何在Java中设置TextView
样式(粗体或斜体)而不使用XML布局?
换句话说,我需要用Java编写android:textStyle
。
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
上设置为粗体或斜体
textView.setTypeface(textView.getTypeface(), Typeface.BOLD); textView.setTypeface(textView.getTypeface(), Typeface.ITALIC); textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
编程方式:
你可以使用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
XML:
您可以在<TextView />
直接在XML文件中设置,如:
android:textStyle="normal" android:textStyle="normal|bold" android:textStyle="normal|italic" android:textStyle="bold" android:textStyle="bold|italic"
你有两个select:
选项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 ; 它比较复杂,但是可以dynamic修改文本属性(不仅是粗体/斜体,还有颜色)。
编程方式:
您可以使用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
XML:
你可以像这样在<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
试试这个通过java代码设置你的TextView
风格
txt1.setTypeface(null,Typeface.BOLD_ITALIC);
TextView text = (TextView)findViewById(R.layout.textName); text.setTypeface(null,Typeface.BOLD);
这将是
yourTextView.setTypeface(null,Typeface.DEFAULT_BOLD);
斜体应该可以用Typeface.DEFAULT_BOLD
replaceTypeface.DEFAULT_ITALC
。
让我知道它是如何工作的。
使用textView.setTypeface(Typeface tf, int style);
设置TextView
样式属性。 有关更多信息,请参阅开发者文档 。
简单地说,如果你想使文字加粗 。 在文本视图属性中的布局中写入此行
android:textStyle="bold"
尝试这个:
TextView textview = (TextView)findViewById(R.id.textview_idname); textview.setTypeface(null,Typeface.BOLD);
标准的方法是使用自定义样式。 EX-
在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" />
正如在这里解释Android开发人员string资源,如果您需要在您的风格文本资源中使用参数,你必须逃避开幕括号
<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);
你可以做的一个方法是:
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);
由于我想使用自定义字体,只有几个答案的结合对我有用。 AOS很明显地忽略了android:textStlyle="italic"
设置,如android:textStlyle="italic"
。 所以最后我必须做如下:在strings.xml
,目标string被声明为:
<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)))
没有效果。 另外,如果我从strings.xml
删除italic tag
,只留下setTypeface()
,它也不起作用。 整蛊Android …
最好的方法是在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" />
AppCompatTextView text =(AppCompatTextView)findViewById(R.layout.appCompatTextView1); text.setTypeface(null,Typeface.BOLD);
使用上面的方法以编程方式设置字体。
你可以这样尝试:
<string name="title"><u><b><i>Your Text</i></b></u></string>
在我的情况下:
1 – 设置文本
2 – 设置字体
holder.title.setText(item.nome); holder.title.setTypeface(null, Typeface.BOLD);