文字大小和不同的 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"/>

使用此功能,你可以避免測試和指定不同螢幕尺寸的尺寸。