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


Answers:


552

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

android:textStyle

例子:

android:textStyle="bold|italic"

以编程方式,该方法是:

setTypeface(Typeface tf)

设置显示文字的字体和样式。请注意,并非所有Typeface家庭实际上都有粗体和斜体变体,因此您可能需要使用setTypeface(Typeface, int)以获得实际想要的外观。


351

这是解决方案

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

77

您只需执行以下操作:

在中设置属性 XML

  android:textStyle="bold"

以编程方式,该方法是:

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

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

Tv.setTypeface(boldTypeface);

希望这对您有所帮助。


让我知道结果
赛义德

54

在XML中

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

您只能使用特定的字体sansserifmonospace通过xml,Java代码可以使用自定义字体

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)


20

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

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


16

如果要绘制,则可以这样做:

TextPaint.setFlags(Paint.FAKE_BOLD_TEXT_FLAG);

16

在理想的情况下,您可以在布局XML定义中设置文本样式属性,如下所示:

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

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

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

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

希望对您有所帮助。有关详细信息,请访问

http://developer.android.com/reference/android/graphics/Typeface.html


14

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

10

在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"

9

最好的方法是:

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

6

假设你是在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

6

文件.xml中,设置

android:textStyle="bold" 

将文本类型设置为粗体。


5

您可以使用此字体

创建一个类名称TypefaceTextView并扩展TextView

私有静态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();
    }
}

将字体粘贴到资产文件夹中创建的fonts文件夹中

<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"

4

使Android TextView变为粗体的4种方法 -完整答案在这里。

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


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

会将字体和样式都设置为粗体。


2
您应该包括对答案的简短解释,以更好地描述其用例和实现。
Dov Benyomin Sohacheski

这不会对现有答案产生任何新的影响。
nvoigt

@nvoigt,他的答案与许多其他答案不同,至少是第二行。可能比其他解决方案更好。我认为它是从stackoverflow.com/questions/6200533/…中捕获的。
CoolMind
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.