我不想自定义我的字体。我只想使用android studio中提供的字体。如何将我的文字字体更改为sans或serif或monospace?
答案 0 :(得分:1)
-Hello 按照Stackoverflow answer
- 在{xml}中使用android:typeface
来更改字体。
- 你的最终代码是: -
<Textview .......... =android:typeface="normal/sans/monospace"..../>
答案 1 :(得分:0)
首先download您需要的字体的.ttf文件(arial.ttf)。将它放在assets文件夹中(在assest文件夹内创建名为“fonts”的新文件夹并将其放在其中)。如果“txtyour”是要应用字体的文本,请使用以下代码,
Typeface type = Typeface.createFromAsset(getAssets(),"fonts/arial.ttf");
txtview.setTypeface(type);
答案 2 :(得分:0)
如果您想更改整个应用的字体,我建议您使用这个样式。
只需将以下行添加到styles.xml文件 -
即可<style name="AppTheme" parent="AppBaseTheme">
<item name="android:textViewStyle">@style/TextAppearance.Sans</item>
<item name="android:buttonStyle">@style/TextAppearance.Sans</item>
</style>
<style name="TextAppearance.Sans" parent="TextAppearance.AppCompat.Large">
<item name="android:fontFamily">sans-serif-light</item>
<item name="android:textStyle">normal</item>
</style>
如果您不想通过应用更改字体,那么只需在每个要更改字体的TextView中定义样式元素,而不是在AppTheme中设置 -
<TextView
style="@style/TextAppearance.Sans"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>