0

画面サイズを自動的に処理し、それに応じてフォントサイズを調整して、すべてのデバイスで画面の同じ割合を占めるテキストビューを作成する必要があります。したがって、私は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>

ここに画像の説明を入力

4

1 に答える 1

0

次のように、さまざまな画面サイズのレイアウトを設定できます

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

于 2013-03-30T06:55:14.103 に答える