0

android:textSize设置为16sp,即使在系统字体大小增加到最大时字体大小也是固定的。

 android:layout_width="match_parent"
 android:layout_height="wrap_content"

TextView 包含在 FrameLayout 中

4

2 回答 2

1
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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="wrap_content"
    android:paddingLeft="8dp"
    android:paddingTop="8dp"
    android:paddingRight="8dp"
    android:paddingBottom="8dp">

    <TextView
        android:id="@+id/item_barcode_codice_fiscale_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Font Size"
        android:textSize="80sp"/>
</FrameLayout>

在我身边工作。我们试试看。
重建或清理项目。提前致谢。 在此处输入图像描述

于 2020-03-13T11:11:43.507 回答
0

如果您希望您的字体大小不根据系统字体大小更改,我建议您使用 size in dp.

正如您在 Decouments中看到的:

sp 是相同的基本单位,但按用户首选的文本大小(它是与比例无关的像素)进行缩放,因此在定义文本大小时应使用此测量单位(但绝不用于布局大小)。

于 2020-03-13T12:55:19.410 回答