0

我有这个代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shape"
android:gravity="top" >

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_vertical" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center" >

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@null"
            android:onClick="btnCat1"
            android:src="@drawable/ic_launcher" >
        </ImageButton>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/imageButton1"
            android:layout_centerInParent="true"
            android:clickable="false"
            android:text="@string/hello_world" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center" >

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@null"
            android:onClick="btnCat1"
            android:src="@drawable/ic_launcher" >
        </ImageButton>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/imageButton1"
            android:layout_centerInParent="true"
            android:clickable="false"
            android:text="@string/hello_world" />
    </RelativeLayout>
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center" >

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@null"
            android:onClick="btnCat1"
            android:src="@drawable/ic_launcher" >
        </ImageButton>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/imageButton1"
            android:layout_centerInParent="true"
            android:clickable="false"
            android:text="@string/hello_world" />
    </RelativeLayout>
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center" >

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@null"
            android:onClick="btnCat1"
            android:src="@drawable/ic_launcher" >
        </ImageButton>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/imageButton1"
            android:layout_centerInParent="true"
            android:clickable="false"
            android:text="@string/hello_world" />
    </RelativeLayout>

</LinearLayout>

有 4 组图像和文本,但如果我以小分辨率打开它,我只能看到 3 个框。如何将它们设置为在下一行显示?

编辑:它应该看起来像这个例子

4

2 回答 2

0

您已为每个元素设置了恒定宽度 (100dp)。它不适合宽度低于 400dp 的屏幕。解决此问题的一种方法是使用水平滚动视图。

将 top RelativeLayout 替换为以下内容。

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

如果您希望在不同的屏幕上有不同的布局,例如在您的附图上,只需使用此处描述的两个不同的布局 xml 。

于 2013-07-27T15:35:49.803 回答
0

看起来您可能正在尝试复制GridView的行为。您可以使用 GridView 根据视图的大小完成从 2 列到 4 列的切换。

根据您的目标版本,另一种可能对您有用的替代方法是指定在可用屏幕空间较少时使用的不同布局文件(检查表 2“smallestWidth”行):提供替代资源。您可以通过指定一个文件夹(例如“res/layout-sw600dp/”)并在该文件夹中放置一个同名的布局文件来使用这种方法。在每个布局文件中,然后使用所需的列数显式布局您的文件。

如果您的目标设备无法识别“sw”资源修饰符,您可以在代码中手动模拟这一点,方法是指定一个布局文件以按名称扩展,然后根据屏幕尺寸(即当应用程序运行时,您当然可以使用)。

如果您想详细说明具体方法,请告诉我。

于 2013-07-27T15:57:33.137 回答