0
我已經做了一個Android應用程序,但它必須在不同類型的屏幕上工作,我也這樣做了。但它是1件事 - 爲了創建縮放屏幕,我使用layout_weight和dp來代替px。但是,我如何在.xml文件中縮放字體?謝謝。如何使用不同類型的屏幕縮放字體?
我已經做了一個Android應用程序,但它必須在不同類型的屏幕上工作,我也這樣做了。但它是1件事 - 爲了創建縮放屏幕,我使用layout_weight和dp來代替px。但是,我如何在.xml文件中縮放字體?謝謝。如何使用不同類型的屏幕縮放字體?
使用android:textSize = "10sp"
,sp
將縮放類似於dp的字體。
您可以使用SP:scale independent pixels
sp :Scale-independent Pixels - this is like the dp unit, but it is also scaled
by the user's font size preference. It is recommend you use this unit when
specifying font sizes, so they will be adjusted for both the screen density and
the user's preference.