我正在寻找很长时间,但我没有成功。
有什么方法可以让 TextView 的大小根据设备的屏幕大小而增加吗?
到目前为止,我正在使用下面的代码,但即便如此我也面临着这类问题。我想设置比textAppearanceLarge
下面的代码更大的尺寸。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall" />
如果我设置了一些固定尺寸,android:textSize="32sp"
比如 Galaxy Ace 这样的屏幕尺寸可能看起来很大,但在类似 S3 的设备中看起来很小。
欢迎任何相关答案,并提前感谢您。