【发布时间】:2015-08-11 04:13:48
【问题描述】:
我正在尝试支持所有不同的屏幕尺寸,但现在我想调整文本大小。
但我用 2 种不同的方式更改文本的大小:
-
在布局 XML 中:
android:textSize="15dp" -
在java文件中:
TextView tv2 = (TextView)v.findViewById(android.R.id.text2); tv2.setTypeface(Typeface.createFromAsset(context.getAssets(), "fonts/GothamBook.ttf")); tv2.setTextSize(14);
那么我怎样才能支持不同屏幕尺寸之间的文本大小呢?
【问题讨论】:
-
为什么不针对不同的屏幕尺寸为您的 xml 使用不同的文件夹?
标签: android android-studio resolution screen-size text-size