gpt4 book ai didi

java - 使用自定义字体在 TextView 中设置粗体和斜体样式(以编程方式)

转载 作者:行者123 更新时间:2023-12-01 20:20:36 25 4
gpt4 key购买 nike

我有一个 TextView ,我希望它是粗体和斜体。我应用了自定义字体,但只让我使用粗体或斜体。如何将两种样式同时应用到我的 TextView ?

最佳答案

您是否尝试在 XML 文件中设置:

android:textStyle="bold|italic"

以编程方式:

textView.setTypeface(yourTypeFace, Typeface.BOLD_ITALIC);

示例:

enter image description here

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.fontapp.MainActivity">

<TextView
android:id="@+id/normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
/>
<TextView
android:id="@+id/bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
/>
<TextView
android:id="@+id/italic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
/>
<TextView
android:id="@+id/boldItalic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
/>
</LinearLayout>

主要 Activity

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Typeface font = Typeface.createFromAsset(getAssets(), "fonts/bebas_neue_regular.ttf");

TextView tvNormal = (TextView) findViewById(R.id.normal);
tvNormal.setTypeface(font);

TextView tvBold = (TextView) findViewById(R.id.bold);
tvBold.setTypeface(font, Typeface.BOLD);

TextView tvItalic = (TextView) findViewById(R.id.italic);
tvItalic.setTypeface(font, Typeface.ITALIC);


TextView tvBoth = (TextView) findViewById(R.id.boldItalic);
tvBoth.setTypeface(font, Typeface.BOLD_ITALIC);
}
}

关于java - 使用自定义字体在 TextView 中设置粗体和斜体样式(以编程方式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44834302/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com