如何在Android TextView中将字体样式设置为粗体,斜体和下划线?


450

我想将TextView的内容设为粗体,斜体和下划线。我尝试了下面的代码,它可以工作,但是没有强调。

<Textview android:textStyle="bold|italic" ..

我该怎么做?有什么好主意吗?


仅设置其中之一有效吗?
falstro 2011年

是的,我的工作还不错,我也想使其下线。
d-man

6
textView.setPaintFlags(Paint.UNDERLINE_TEXT_FLAG);
bCliks 2013年

15
tv.setTypeface(null, Typeface.BOLD_ITALIC);

3
制作Android TextView Bold的4种方法我认为您应该阅读本文。
c49

Answers:


279

我不知道下划线,但是有黑体和斜体"bolditalic"。这里没有提到下划线:http : //developer.android.com/reference/android/widget/TextView.html#attr_android : textStyle

提醒您使用提及的内容 bolditalic内容,我在那页中引用

必须为以下常量值中的一个或多个(以“ |”分隔)。

所以你会用 bold|italic

您可以检查此问题是否带有下划线:我可以在android版式中对文本加下划线吗?


48
textView.setPaintFlags(Paint.UNDERLINE_TEXT_FLAG);
下划线

1
@bala请注意,您的解决方案始终在整个文本下划线,因此,如果您只想在其中一部分下划线,这是不可行的。
Giulio Piancastelli 2014年

361

这应该使您的TextView 同时显示粗体下划线斜体

strings.xml

<resources>
    <string name="register"><u><b><i>Copyright</i></b></u></string>
</resources>

要将此String设置为TextView,请在main.xml中执行此操作

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/textview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="@string/register" />

或在JAVA中

TextView textView = new TextView(this);
textView.setText(R.string.register);

有时,当您可能必须使用动态文本时,上述方法将无济于事。因此,在这种情况下,SpannableString开始起作用

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

输出值

在此处输入图片说明


3
我在2.1中检查过。所以,至少它应该从2.1及以上工作
穿心莲内酯塞尔瓦

可以考虑使用new StyleSpan(Typeface.BOLD_ITALIC)
Cheok Yan Cheng

为什么对动态串联字符串不起作用?它是有线,一些数字出现....
AuBee

152

或者就像在Kotlin中这样:

val tv = findViewById(R.id.textViewOne) as TextView
tv.setTypeface(null, Typeface.BOLD_ITALIC)
// OR
tv.setTypeface(null, Typeface.BOLD or Typeface.ITALIC)
// OR
tv.setTypeface(null, Typeface.BOLD)
// OR
tv.setTypeface(null, Typeface.ITALIC)
// AND
tv.paintFlags = tv.paintFlags or Paint.UNDERLINE_TEXT_FLAG

或在Java中:

TextView tv = (TextView)findViewById(R.id.textViewOne);
tv.setTypeface(null, Typeface.BOLD_ITALIC);
// OR
tv.setTypeface(null, Typeface.BOLD|Typeface.ITALIC);
// OR
tv.setTypeface(null, Typeface.BOLD);
// OR
tv.setTypeface(null, Typeface.ITALIC);
// AND
tv.setPaintFlags(tv.getPaintFlags()|Paint.UNDERLINE_TEXT_FLAG);

保持简单,一行:)


1
通过为您正在使用的视图插入kotlinx.android.synthetic包,在Kotlin中就不需要findViewByID,从而使每个setTypeface行:textViewOne.setTypeface(...)
cren90 '17

paintFlags必要吗?没有它就可以工作
Prabs

75

对于粗体和斜体,无论您做什么,都可以正确地使用下划线使用以下代码

HelloAndroid.java

 package com.example.helloandroid;

 import android.app.Activity;
 import android.os.Bundle;
 import android.text.SpannableString;
 import android.text.style.UnderlineSpan;
import android.widget.TextView;

public class HelloAndroid extends Activity {
TextView textview;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    textview = (TextView)findViewById(R.id.textview);
    SpannableString content = new SpannableString(getText(R.string.hello));
    content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
    textview.setText(content);
}
}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello"
android:textStyle="bold|italic"/>

string.xml

<?xml version="1.0" encoding="utf-8"?>
 <resources>
  <string name="hello">Hello World, HelloAndroid!</string>
  <string name="app_name">Hello, Android</string>
</resources>

要删除underline传递Null值,而不是new UnderlineSpan()如下所示 content.setSpan(null, 0, content.length(), 0);
Sami Eltamawy,2015年

47

这是添加下划线并保持其他设置的简单方法:

textView.setPaintFlags(textView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);

请注意,此解决方案始终在整个文本下划线,因此在只希望部分划线的情况下不可行。
Giulio Piancastelli 2014年

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:

您可以像这样直接在XML文件中设置:

android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"

如何使用setTypeface更改字体系列,同时应用粗体,斜体,下划线?
王子


23

如果您正在从文件或网络中读取该文本。

您可以通过将HTML标签添加到文本中来实现(如前所述)

This text is <i>italic</i> and <b>bold</b>
and <u>underlined</u> <b><i><u>bolditalicunderlined</u></b></i>

然后您可以使用将HTML字符串处理为可显示样式的文本的HTML类。

// textString is the String after you retrieve it from the file
textView.setText(Html.fromHtml(textString));

:fromHtml(String)方法被弃用API级24的更多讨论这里stackoverflow.com/questions/37904739/...
帕维尔Biryukov

20

没有引号对我有效:

<item name="android:textStyle">bold|italic</item>

5
    style="?android:attr/listSeparatorTextViewStyle
  • 通过制作这种样式,您可以实现强调


3

您可以通过buildSpannedString{}在其core-ktx依赖项下使用Kotlin轻松实现它。

val formattedString = buildSpannedString {
    append("Regular")
    bold { append("Bold") }
    italic { append("Italic") }
    underline { append("Underline") }
    bold { italic {append("Bold Italic")} }
}

textView.text = formattedString

这应该是公认的答案100%
sachadso,
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.