如何设置TextView textStyle,例如粗体,斜体


843

如何TextView在Java中设置样式(粗体或斜体)而不使用XML布局?

换句话说,我需要android:textStyle用Java 编写。

Answers:


1884
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)

5
要删除样式,可以使用Typeface.NORMAL
Brais Gabin 2013年

351
如果这样做,您将丢失任何以前的字体。要保留前一个,请执行诸如textView.setTypeface(textView.getTypeface(),Typeface.BOLD_ITALIC)之类的操作;
leocadiotine

34
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL);不会从中删除粗体或斜体样式TextView。您将需要使用textView.setTypeface(null, Typeface.NORMAL);它。
Jarett Millard 2014年

57
要保留以前的字体,但要摆脱粗体或斜体样式,请使用以下代码:textView.setTypeface(Typeface.create(textView.getTypeface(), Typeface.NORMAL), Typeface.NORMAL);
Shnkc 2015年

6
谢谢@Shnkc,您为我指出了正确的方向。实际上,您只需要:textView.setTypeface(Typeface.create(textView.getTypeface(),Typeface.NORMAL));
PedroHidalgo'2

271

尝试将此设置TextView为粗体或斜体

textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);

14
顺便说一句,如果您想清除现有的字体样式,则需要做一些不同的事情,例如:tv.setTypeface(Typeface.create(tv.getTypeface(), Typeface.NORMAL));
greg7gkb 2014年

@ greg7gkb tv.setTypeface(null, Typeface.BOLD);不会这样做吗(清除现有字体样式)?
Prabs

将null传递给setTypeface()意味着TextView使用硬编码默认值,该默认值可能与之前设置的Typeface不同。
greg7gkb '18

142

以编程方式:

您可以使用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"

11
发问者问如何在不使用XML布局的情况下做到这一点。
朱利安·席姆斯(JulianSymes)2013年

6
with in Java and without using XML顺便问一下问题对他人也有帮助。
Pratik Butani 2015年

5
是。我是通过Google来到这里的,它对我有帮助。谢谢:)
Atul

96

您有两种选择:

选项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 ; 它比较复杂,但是您可以动态修改文本属性(不仅是粗体/斜体,还可以是颜色)。


6
使用typeFace可以为整个文本设置一个样式。
加布里埃尔·内古特

2
当我在自定义行中尝试时,为什么没有呢?字符串s1 =“ <b>您在:</ b>”; holder.address =(TextView)convertView.findViewById(R.id.address_text_view); holder.address.setText(Html.fromHtml(s1)+ track.getAddress());
Shylendra Madda 2013年

2
此方法是很好的部分文本样式。就像大文本视图中的报价一样。
Salih Erikci 2014年

1
在我的情况下,第一种方法无效。private void createTextView(String title,String text){textView = new TextView(this); textView.setTextSize(17); textView.setText(Html.fromHtml(“ <​​b>” +标题+“ </ b>”)+“:” +文本);}
garenyondem 2015年

1
如果由于布局重新计算而导致文本较大,则spannable和fromHTML选项可能会减慢键入/ setText的速度。如果您还有其他方法可以避免。
尤金·卡尔托耶夫

42

以编程方式:

您可以通过编程方式使用 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"

或者,您可以设置收藏字体(从素材资源)。有关更多信息,请参见链接


14
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

11

只是如果您想使文本加粗。在文本视图属性中的布局中写入此行

android:textStyle="bold"

10
TextView text = (TextView)findViewById(R.layout.textName);
text.setTypeface(null,Typeface.BOLD);

10

这将是

yourTextView.setTypeface(null,Typeface.DEFAULT_BOLD);

和斜体应该可以替换Typeface.DEFAULT_BOLDTypeface.DEFAULT_ITALC

让我知道它是如何工作的。


10

尝试TextView 通过Java代码设置您的样式

txt1.setTypeface(null,Typeface.BOLD_ITALIC);


7

尝试这个:

textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);

6

尝试这个:

TextView textview = (TextView)findViewById(R.id.textview_idname);
textview.setTypeface(null,Typeface.BOLD);

4

执行此操作的标准方法是使用自定义样式。前

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" />

4

一种方法是:

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); 

4
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)


3

根据样式选择标准,最简单的方法是:

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));

2

由于我想使用自定义字体,因此只有几个答案的结合对我有效。显然,我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 tagstrings.xml放弃setTypeface()全部,也没有任何效果。棘手的Android ...


2

如此处所述,Android Developers String Resources如果您需要在样式化的文本资源中使用参数,则必须使用方括号

<resources>
<string name="welcome_messages">Hello, %1$s! You have &lt;b>%2$d new messages&lt;/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);

2

就我而言:

1-设定文字

2-设置字体

holder.title.setText(item.nome);
holder.title.setTypeface(null, Typeface.BOLD);

1

这是对配置了OnePlus Slate™字体的OnePlus 5T唯一适用的方法:

textView.setTypeface(Typeface.create(textView.getTypeface(), useBold ? Typeface.BOLD : Typeface.NORMAL));

其他方法会使其在变为BOLD或NORMAL时退回到Roboto。


1

在AndroidX上使用简化标签时,请考虑使用HtmlCompat.fromHtml()

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(HtmlCompat.fromHtml(s, FROM_HTML_MODE_LEGACY));

0

最好的方法是在 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" />

0
AppCompatTextView text =(AppCompatTextView)findViewById(R.layout.appCompatTextView1);
text.setTypeface(null,Typeface.BOLD);

使用上述方法以编程方式设置字体。


0

1)您可以使用TypeFace进行设置。2)您可以直接 在strings.xml(在values文件夹中)中使用3)您可以String myNewString =“这是我的粗体文本这是我的斜体字符串 这是我的带下划线的字符串


0

您可以使用以下示例设置不同的字体-

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);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.