アプリをすべてのデバイスで動作させようとしていますが、うまくいきません。どうすればこのギャップを解消できますか?
これは、次のようになります。
私の電話では問題なく動作しますが、このタブレット エミュレータでは動作しません。これを修正するには、どのような手法を使用できますか? 複数の画面サイズのサポートを読んだことがありますが、あまり役に立ちません。コードは次のとおりです。
<ImageView
android:id="@+id/terranlogo1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:src="@drawable/terranlogo" />
<ImageView
android:id="@+id/protosslogo1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentRight="true"
android:src="@drawable/protosslogo" />
<ImageView
android:id="@+id/zerglogo1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:src="@drawable/zerglogo" />
<CheckBox
android:id="@+id/ck_t1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/terranlogo1"
android:layout_centerHorizontal="true" />
<CheckBox
android:id="@+id/ck_p1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/protosslogo1"
android:layout_below="@id/protosslogo1"
android:layout_marginLeft="25dp" />
<CheckBox
android:id="@+id/ck_z1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/zerglogo1"
android:layout_below="@id/zerglogo1"
android:layout_marginLeft="25dp" />
<ImageView
android:id="@+id/terranlogo2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_below="@id/ck_t1"
android:layout_centerHorizontal="true"
android:src="@drawable/terranlogo" />
<ImageView
android:id="@+id/protosslogo2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentRight="true"
android:layout_below="@id/ck_p1"
android:src="@drawable/protosslogo" />
<ImageView
android:id="@+id/zerglogo2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:layout_below="@id/ck_z1"
android:src="@drawable/zerglogo" />
<CheckBox
android:id="@+id/ck_t2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/terranlogo2"
android:layout_centerHorizontal="true" />
<CheckBox
android:id="@+id/ck_p2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/protosslogo1"
android:layout_below="@id/protosslogo2"
android:layout_marginLeft="25dp" />
<CheckBox
android:id="@+id/ck_z2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/zerglogo1"
android:layout_below="@id/zerglogo2"
android:layout_marginLeft="25dp" />
<Spinner
android:id="@+id/s_answertime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="80dp" />
<Spinner
android:id="@+id/s_gametime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/s_answertime"
android:layout_alignBottom="@+id/s_answertime"
android:layout_centerHorizontal="true" />
<Spinner
android:id="@+id/s_mistakenumber"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="80dp" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ck_t2"
android:layout_marginRight="18dp"
android:layout_marginTop="17dp"
android:gravity="center_vertical|center_horizontal"
android:text="Choose your opponets race(s) and your race(s)"
android:textSize="30dp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/s_gametime"
android:gravity="center_vertical|center_horizontal"
android:text="Answer Time"
android:textSize="15dp" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/textView1"
android:layout_alignBottom="@+id/textView1"
android:layout_alignParentRight="true"
android:gravity="center_vertical|center_horizontal"
android:text="Mistakes \nAllowed"
android:textSize="15dp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/s_gametime"
android:layout_centerHorizontal="true"
android:gravity="center_vertical|center_horizontal"
android:text="Game Length"
android:textSize="15dp" />