如何在Android中将文本更改为粗体?

时间:2011-01-25 10:17:51

标签: android text textview

如何更改Android TextView 中的文字/字体设置?例如,如何使文字粗体

21 个答案:

答案 0 :(得分:498)

要在layout.xml文件中执行此操作:

android:textStyle

示例:

android:textStyle="bold|italic"

以编程方式,该方法是:

setTypeface(Typeface tf)

设置应显示文本的字体和样式。请注意,并非所有Typeface个系列都具有粗体和斜体变体,因此您可能需要使用setTypeface(Typeface, int)来获得您真正想要的外观。

答案 1 :(得分:337)

这是解决方案

TextView questionValue = (TextView) findViewById(R.layout.TextView01);
questionValue.setTypeface(null, Typeface.BOLD);

答案 2 :(得分:65)

您只需执行以下操作:

XML

中设置属性
  android:textStyle="bold"

以编程方式,该方法是:

TextView Tv = (TextView) findViewById(R.id.TextView);

Typeface boldTypeface = Typeface.defaultFromStyle(Typeface.BOLD);

Tv.setTypeface(boldTypeface);

希望这有助于你感谢。

答案 3 :(得分:51)

在XML

android:textStyle="bold" //only bold
android:textStyle="italic" //only italic
android:textStyle="bold|italic" //bold & italic

您只能使用特定字体sansserif& monospace通过xml,Java code可以使用自定义字体

android:typeface="monospace" // or sans or serif

以编程方式(Java代码)

TextView textView = (TextView) findViewById(R.id.TextView1);

textView.setTypeface(Typeface.SANS_SERIF); //only font style
textView.setTypeface(null,Typeface.BOLD); //only text style(only bold)
textView.setTypeface(null,Typeface.BOLD_ITALIC); //only text style(bold & italic)
textView.setTypeface(Typeface.SANS_SERIF,Typeface.BOLD); 
                                         //font style & text style(only bold)
textView.setTypeface(Typeface.SANS_SERIF,Typeface.BOLD_ITALIC);
                                         //font style & text style(bold & italic)

答案 4 :(得分:21)

设置属性

android:textStyle="bold"

答案 5 :(得分:17)

如果您使用的是自定义字体,但没有粗体字体可供您使用:

myTextView.setText(Html.fromHtml("<b>" + myText + "</b>");

答案 6 :(得分:15)

这很容易

setTypeface(Typeface.DEFAULT_BOLD);

答案 7 :(得分:15)

如果您正在绘制它,那么这样做:

TextPaint.setFlags(Paint.FAKE_BOLD_TEXT_FLAG);

答案 8 :(得分:14)

在理想世界中,您可以在布局XML定义中设置文本样式属性,如:

<TextView
    android:id="@+id/TextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textStyle="bold"/>

使用 setTypeface 方法,可以通过一种简单的方法在代码中动态获得相同的结果。您需要传递字体类的对象,它将描述该TextView的字体样式。因此,要获得与上面的XML定义相同的结果,您可以执行以下操作:

TextView Tv = (TextView) findViewById(R.id.TextView);
Typeface boldTypeface = Typeface.defaultFromStyle(Typeface.BOLD);
Tv.setTypeface(boldTypeface);

第一行将创建预定义样式的对象(在本例中为 Typeface.BOLD ,但还有更多预定义的)。一旦我们有了一个字体实例,我们就可以在TextView上设置它。这就是我们的内容将以我们定义的风格显示。

我希望它可以帮到你很多。有关更好的信息,你可以访问

  

https://nodejs.org/api/modules.html#modules_loading_from_node_modules_folders

答案 9 :(得分:9)

在values文件夹

中的style.xml文件中定义具有所需格式的新样式
<style name="TextViewStyle" parent="AppBaseTheme">
    <item name="android:textStyle">bold</item>
    <item name="android:typeface">monospace</item>
    <item name="android:textSize">16sp</item>
    <item name="android:textColor">#5EADED</item>

</style>

然后通过使用TextView

的属性编写以下代码,将此样式应用于TextView
style="@style/TextViewStyle"

答案 10 :(得分:6)

最好的方法是:

TextView tv = findViewById(R.id.textView);
tv.setTypeface(Typeface.DEFAULT_BOLD);

答案 11 :(得分:4)

通过 XML:

 android:textStyle="bold"

通过Java:

//Let's say you have a textview 
textview.setTypeface(null, Typeface.BOLD);

答案 12 :(得分:4)

假设您是Android Studio的新手, 您只需使用

在设计视图 XML 中完成此操作即可
android:textStyle="bold"          //to make text bold
android:textStyle="italic"        //to make text italic
android:textStyle="bold|italic"   //to make text bold & italic

答案 13 :(得分:3)

在我的例子中,通过string.xml传递值与html Tag ..

一起计算出来

<string name="your_string_tag"> <b> your_text </b></string>

答案 14 :(得分:3)

4 ways to make Android TextView bold-完整答案在这里。

  1. 使用 android:textStyle 属性

    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TEXTVIEW 1" android:textStyle="bold" /> 使用粗体|斜体表示粗体和斜体。

  2. 使用setTypeface()方法

    textview2.setTypeface(null, Typeface.BOLD);
    textview2.setText("TEXTVIEW 2");
    
  3. HtmlCompat.fromHtml()方法,Html.fromHtml()在API级别24中已弃用。

     String html="This is <b>TEXTVIEW 3</b>";
     textview3.setText(HtmlCompat.fromHtml(html,Typeface.BOLD));
    

答案 15 :(得分:3)

您可以将其用于字体

创建一个类名TypefaceTextView并扩展TextView

private static Map mTypefaces;

public TypefaceTextView(final Context context) {
    this(context, null);
}

public TypefaceTextView(final Context context, final AttributeSet attrs) {
    this(context, attrs, 0);
}

public TypefaceTextView(final Context context, final AttributeSet attrs, final int defStyle) {
    super(context, attrs, defStyle);
    if (mTypefaces == null) {
        mTypefaces = new HashMap<String, Typeface>();
    }

    if (this.isInEditMode()) {
        return;
    }

    final TypedArray array = context.obtainStyledAttributes(attrs, styleable.TypefaceTextView);
    if (array != null) {
        final String typefaceAssetPath = array.getString(
                R.styleable.TypefaceTextView_customTypeface);

        if (typefaceAssetPath != null) {
            Typeface typeface = null;

            if (mTypefaces.containsKey(typefaceAssetPath)) {
                typeface = mTypefaces.get(typefaceAssetPath);
            } else {
                AssetManager assets = context.getAssets();
                typeface = Typeface.createFromAsset(assets, typefaceAssetPath);
                mTypefaces.put(typefaceAssetPath, typeface);
            }

            setTypeface(typeface);
        }
        array.recycle();
    }
}

将字体粘贴到资产文件夹

中创建的字体文件夹中
<packagename.TypefaceTextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.5"
        android:gravity="center"
        android:text="TRENDING TURFS"
        android:textColor="#000"
        android:textSize="20sp"
        app:customTypeface="fonts/pompiere.ttf" />**here pompiere.ttf is the font name**

将行放在xml

中的父布局中
 xmlns:app="http://schemas.android.com/apk/res/com.mediasters.wheresmyturf"
xmlns:custom="http://schemas.android.com/apk/res-auto"

答案 16 :(得分:1)

文件.xml 中,设置

android:textStyle="bold" 

将文本类型设置为粗体。

答案 17 :(得分:0)

editText.setTypeface(Typeface.createFromAsset(getAssets(), ttfFilePath));
etitText.setTypeface(et.getTypeface(), Typeface.BOLD);

会将粗体和风格设置为粗体。

答案 18 :(得分:0)

通过XML,您可以将 textStyle 设置为粗体,如下所示

<TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="Bold text"
   android:textStyle="bold"/>

通过编程,您可以将TextView设置为粗体,如下所示

textview.setTypeface(Typeface.DEFAULT_BOLD);

答案 19 :(得分:0)

在Kotlin中,我们可以一行完成

 TEXT_VIEW_ID.typeface = Typeface.defaultFromStyle(Typeface.BOLD)

答案 20 :(得分:0)

你可以这样做

ty.setTypeface(Typeface.createFromAsset(ctx.getAssets(), "fonts/magistral.ttf"), Typeface.BOLD);