【问题标题】:Android : Altering the font size based on device [duplicate]Android:根据设备更改字体大小[重复]
【发布时间】:2013-03-30 06:23:58
【问题描述】:

我需要构建一个文本视图,它应该自动处理屏幕大小并相应地调整字体大小,以便在所有设备中填充相同百分比的屏幕。因此我使用了 dp。我也试过sp。但我做不到。请帮忙。

提前致谢。

<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>

【问题讨论】:

    标签: android android-layout textview


    【解决方案1】:

    您可以设置不同屏幕尺寸的布局如下

    res/layout/main_activity.xml           # For handsets (smaller than 600dp available width)
    res/layout-sw600dp/main_activity.xml   # For 7” tablets (600dp wide and bigger)
    res/layout-sw720dp/main_activity.xml   # For 10” tablets (720dp wide and bigger)
    

    http://developer.android.com/guide/practices/screens_support.html

    【讨论】:

    • 更改字体大小以更好地适应各种值而不是布局
    猜你喜欢
    • 2020-08-21
    • 2016-11-27
    • 1970-01-01
    • 2016-11-29
    • 2016-04-22
    • 1970-01-01
    • 2015-09-09
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多