1

我正在开发一个 Android 2.2.2 应用程序,它将支持多种屏幕尺寸并且所有屏幕都是纵向的。我不支持横向。

我在 HTC Desire 和三星 Galaxy Tab 7.7 上测试了以下布局。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/no_conectado"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/labelSelGateName"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:layout_marginTop="80dp" />

    <TextView
        android:id="@+id/labelSelOpened"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal" />

    <ProgressBar
        android:id="@+id/indicatorActivityView"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_marginTop="22dp"
        android:layout_gravity="center_horizontal" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="110dp"
        android:layout_marginTop="60dp"
        android:orientation="horizontal" >

        <ImageButton
            android:id="@+id/btnMyGates"
            android:layout_width="50dp"
            android:layout_height="110dp"
            android:layout_marginLeft="20dp"
            android:layout_weight=".33"
            android:background="@null"
            android:contentDescription="@string/layout_empty"
            android:onClick="onGateClick" />

        <LinearLayout
            android:layout_width="90dp"
            android:layout_height="110dp"
            android:layout_weight=".33"
            android:orientation="vertical" >

            <ImageButton
                android:id="@+id/btnOpen"
                android:layout_width="90dp"
                android:layout_height="55dp"
                android:layout_gravity="center_horizontal"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:background="@null"
                android:contentDescription="@string/layout_empty"
                android:onClick="onOpenDoorClick" />

            <ImageButton
                android:id="@+id/btnClose"
                android:layout_width="90dp"
                android:layout_height="50dp"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="10dp"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:background="@null"
                android:contentDescription="@string/layout_empty"
                android:onClick="onCloseDoorClick" />

        </LinearLayout>

        <ImageButton
            android:id="@+id/btnOptions"
            android:layout_width="50dp"
            android:layout_height="110dp"
            android:layout_marginRight="20dp"
            android:layout_weight=".33"
            android:background="@null"
            android:contentDescription="@string/layout_empty"
            android:onClick="onOptionClick" />

    </LinearLayout>

    <ImageButton
        android:id="@+id/btnFaqs"
        android:layout_width="110dp"
        android:layout_height="60dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp"
        android:background="@null"
        android:contentDescription="@string/layout_empty"
        android:onClick="onFAQClick" />

    <ImageButton
        android:id="@+id/btnInfo"
        android:layout_width="110dp"
        android:layout_height="60dp"
        android:layout_gravity="right"
        android:layout_marginTop="20dp"
        android:background="@null"
        android:contentDescription="@string/layout_empty"
        android:onClick="onInfoClick" />

</LinearLayout>

我有 ldpi、mdpi、hdpi 和 x-hdpi 的图像。

背景图像看起来很棒,但是当我在三星 Galaxy Tab 上测试它时,所有小部件(TextViewProgressBarImageButton等)都不在正确的位置。

我使用“Nexus One”作为模型在 Eclipse 上设计了这个布局。

在这里,人们建议我为每种屏幕尺寸和密度仅使用一种布局,但这不起作用。我正在使用dp单位和fill_parent等,但它在 Galaxy Tab 上有所不同。

我需要x-large屏幕尺寸的布局吗?

4

2 回答 2

6

确实,您收到的建议很好:可能只有一个布局文件,但正如评论中已经建议的那样,即使您使用or ,硬编码尺寸也不好,特别是当您针对所有屏幕尺寸和可用的密度。 dpdip

相反,您应该将这些值替换为维度值的链接

例如,而不是 android:layout_marginLeft="10dp",你会有类似的东西

android:layout_marginLeft="@dimen/textview_margin_left"

其中textview_margin_left是在dimens.xml中定义的,在不同的文件夹中有不同的值;
可能在文件夹中values : <dimen name="textview_margin_left">10dp</dimen>
在文件夹中values-large : <dimen name="textview_margin_left">20dp</dimen>中,
而在values-xlarge 中<dimen name="textview_margin_left">30dp</dimen>

但这只是一个示例,您必须测试所有尺寸和分辨率并为您的布局找到最佳值。在Eclipse模式下,Graphical Layout您可以轻松了解您的布局在各种设备上的外观,只需单击Nexus One并从列表中选择另一个模型,布局将自动更新。

此外,您可以移动dimens.xml所有文本大小,这对于 x-large 设备非常有用。

只使用一个RelativeLayout而不是多个叠瓦LinearLayouts可能也是一个好主意,并为您的对象使用相对定位,而不是一些硬编码的值。

于 2012-07-24T08:49:16.783 回答
1

问题在于您在布局中使用静态值(100dp,60dp)。现在问题出在更高的分辨率上,这个 dp 不一样。

这意味着您应该为超大屏幕创建布局。我也不会使用那些静态值。比您的应用程序在许多不同的屏幕尺寸上表现良好!

祝你有美好的一天

苹果浏览器

于 2012-07-24T07:45:04.830 回答