android:textSize
设置为16sp
,即使在系统字体大小增加到最大时字体大小也是固定的。
android:layout_width="match_parent"
android:layout_height="wrap_content"
TextView 包含在 FrameLayout 中
android:textSize
设置为16sp
,即使在系统字体大小增加到最大时字体大小也是固定的。
android:layout_width="match_parent"
android:layout_height="wrap_content"
TextView 包含在 FrameLayout 中
<?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>
如果您希望您的字体大小不根据系统字体大小更改,我建议您使用 size in dp
.
正如您在 Decouments中看到的:
sp 是相同的基本单位,但按用户首选的文本大小(它是与比例无关的像素)进行缩放,因此在定义文本大小时应使用此测量单位(但绝不用于布局大小)。