私は2つのプレーンテキストでレイアウトしています。これはコードです:
<EditText
android:id="@+id/editTextName"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="26dp"
android:layout_marginTop="56dp"
android:hint="Förnamn"
>
</EditText>
<EditText
android:id="@+id/editTextAdress"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editTextName"
android:layout_below="@+id/editTextName"
android:layout_marginTop="20dp"
android:hint="Gatuadress">
</EditText>
解像度に問題があります。エミュレータを 3,7 インチで使用すると見栄えがよくなりますが、10.1 インチ (タブレット) で変更すると、プレーン テキストが非常に小さくなります。平文が同じように見えるすべての再配置で、どうすればそれを行うことができますか?
これは理解を深めるための写真です:
タブレットと小さい画面の解像度でプレーンテキストが同じに見えるようにしたい。