admin 管理员组文章数量: 887007
java怎么设置粗体和斜体,如何在Android TextView中将字体样式设置为粗体,斜体和下划线?...
我想让TextView的内容变得粗体,斜体和下划线。 我尝试了以下代码并且它可以工作,但没有强调。
我该怎么做? 任何快速的想法?
#1楼
这是添加下划线的简单方法,同时保持其他设置:
textView.setPaintFlags(textView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
#2楼
或者像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);
保持简单,一行:)
#3楼
style="?android:attr/listSeparatorTextViewStyle
通过制作这种风格,你可以实现强调
#4楼
如果您正在从文件或网络中读取该文本。
您可以通过向所提到的文本添加HTML标记来实现它
This text is italic and bold
and underlined bolditalicunderlined
然后,您可以使用将HTML字符串处理为可显示样式文本的HTML类。
// textString is the String after you retrieve it from the file
textView.setText(Html.fromHtml(textString));
#5楼
Programmatialy:
您可以使用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"
本文标签: java怎么设置粗体和斜体 如何在Android TextView中将字体样式设置为粗体,斜体和下划线
版权声明:本文标题:java怎么设置粗体和斜体,如何在Android TextView中将字体样式设置为粗体,斜体和下划线?... 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732352609h1533512.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论