私はeeepad10"タブレットでアプリを開発しています。これは、1280x752の画面サイズとmdpi密度を報告します。
現在の画像はこんな感じです
最近、Nexus 4(画面サイズ1184 x 768、密度xhdpi)を購入しました。私が電話でアプリを実行した場合、それは同じように見えますが、小さいだけだと思いました。
私が実際に得たのはこれでした:
私が期待したものではありません。
左側のリストビューのレイアウトビューは次のようになります-
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:tools="http://schemas.android.com/tools" android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginRight="5dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:id="@+id/tvName"
android:gravity="center"
android:layout_width="80dp"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
android:text="XXX"
android:textSize="30sp"
android:background="@drawable/rectanglesegment"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView android:id="@+id/tvLongName"
android:layout_toRightOf="@+id/tvName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="dfdfdsfdfdfdsfdsf"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView android:id="@+id/tvUsage"
android:layout_below="@+id/tvLongName"
android:layout_toRightOf="@+id/tvName"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginRight="5dp"
android:textColor="#ff0000"
android:gravity="right"
android:text="Required"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView android:id="@+id/tvCardinality"
android:layout_below="@+id/tvLongName"
android:layout_toRightOf="@+id/tvUsage"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="5dp"
android:layout_marginLeft="5dp"
android:text="(0..1)"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
携帯電話のレイアウトをタブレットのように見せるために何ができますか?