我计划在不同的设备大小上为 textview 使用不同的字体大小,以使字母清晰易读。我已经决定不为不同的设备使用不同的布局,并建立了一个通用的布局来适应所有的设备。现在唯一的问题是文本大小。
问题 :
我想就如何根据设备的大小(物理大小)更改字体大小获得您的技术建议。
如何根据纵横比得出字体大小。
使用这种方法有什么缺陷吗?
用于文本视图的 XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:orientation="vertical">
<TextView
android:id="@+id/tvValue4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="I planned to use different font size for the textview on different device size so as to make the letters legible. I have already decided not to use different layouts for different devices and built a common layout to fit in all the devices. Now the only problem is on the text size."
android:textColor="#000000"
android:textSize="15sp" />
</LinearLayout>
提前致谢