我想将TextView
的内容设为粗体,斜体和下划线。我尝试了下面的代码,它可以工作,但是没有强调。
<Textview android:textStyle="bold|italic" ..
我该怎么做?有什么好主意吗?
我想将TextView
的内容设为粗体,斜体和下划线。我尝试了下面的代码,它可以工作,但是没有强调。
<Textview android:textStyle="bold|italic" ..
我该怎么做?有什么好主意吗?
Answers:
我不知道下划线,但是有黑体和斜体"bolditalic"
。这里没有提到下划线:http : //developer.android.com/reference/android/widget/TextView.html#attr_android : textStyle
提醒您使用提及的内容 bolditalic
内容,我在那页中引用
必须为以下常量值中的一个或多个(以“ |”分隔)。
所以你会用 bold|italic
您可以检查此问题是否带有下划线:我可以在android版式中对文本加下划线吗?
textView.setPaintFlags(Paint.UNDERLINE_TEXT_FLAG);
这应该使您的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);
输出值
new StyleSpan(Typeface.BOLD_ITALIC)
或者就像在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);
保持简单,一行:)
paintFlags
必要吗?没有它就可以工作
对于粗体和斜体,无论您做什么,都可以正确地使用下划线使用以下代码
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);
这是添加下划线并保持其他设置的简单方法:
textView.setPaintFlags(textView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
编程方式:
您可以使用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"
如果您正在从文件或网络中读取该文本。
您可以通过将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));
xml中只有一行代码
android:textStyle="italic"
您可以通过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