0

我一直在 eeepad 10" 平板电脑上开发一个应用程序。它报告的屏幕尺寸为 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>

我该怎么做才能让手机上的布局看起来更像平板电脑?

4

1 回答 1

2

最好从多屏上的 android 开发人员指南中解释。专门为您的 xml 使用大小限定符。如果您使用大型 7 英寸平板电脑,则包括在内。

于 2012-12-21T23:43:55.767 回答