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

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

我想把TextView的内容加粗,斜体和下划线。 我尝试了以下代码并且它可以工作,但没有强调。

我该怎么做? 任何快速的想法?

9个解决方案

342 votes

这应该使您的TextView同时变为粗体,下划线和斜体。

strings.xml中

Copyright

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

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

OUTPUT

07SZg.png

Andro Selva answered 2019-01-27T12:31:09Z

235 votes

我不知道下划线,但粗体和斜体有bold|italic.这里没有提到下划线:[http://developer.android.com/reference/android/widget/TextView.html#attr_android:textStyle]

请注意,使用你需要提到的bold|italic,我引用该页面

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

所以你要使用bold|italic

您可以检查下划线的问题:我可以在Android布局中为文本加下划线吗?

Nanne answered 2019-01-27T12:30:15Z

125 votes

或者像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);

保持简单,一行:)

h0ussni answered 2019-01-27T12:31:45Z

69 votes

对于粗体和斜体,无论你做什么都是正确的下划线使用下面的代码

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中

android:id="@+id/textview"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:text="@string/hello"

android:textStyle="bold|italic"/>

string.xml

Hello World, HelloAndroid!

Hello, Android

Vivek answered 2019-01-27T12:32:32Z

45 votes

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

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

sonida answered 2019-01-27T12:32:56Z

32 votes

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"

King of Masses answered 2019-01-27T12:33:46Z

20 votes

没有引号适合我:

bold|italic

Lotfi answered 2019-01-27T12:34:11Z

20 votes

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

您可以通过向所提到的文本添加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));

Ahmed Hegazy answered 2019-01-27T12:34:47Z

5 votes

style="?android:attr/listSeparatorTextViewStyle

通过制作这种风格,你可以实现强调

dreamdeveloper answered 2019-01-27T12:35:10Z

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值