文字大小和不同的 Android 屏幕尺寸

有时,最好只有三个选项

 style="@android:style/TextAppearance.Small"
 style="@android:style/TextAppearance.Medium"
 style="@android:style/TextAppearance.Large"

使用小和大来区分正常的屏幕尺寸。

<TextView
        android:id="@+id/TextViewTopBarTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@android:style/TextAppearance.Small"/>

正常情况下,你无需指定任何内容。

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

使用此功能,你可以避免测试和指定不同屏幕尺寸的尺寸。