1

我有奇怪的问题。我有 LinearLayout,它包含一些固定大小的元素和一个 ReletiveLayout,它使用父空间的剩余空间(权重 = 1)。简单的布局:

<ScrollView 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:fillViewport="true" >

    <LinearLayout
        android:id="@+id/LinearLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        tools:context=".LoginActivity" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="16dp"
            android:layout_marginTop="@dimen/space_between_views"
            android:src="@drawable/logo" />

        <EditText
            android:id="@+id/login"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp"
            android:ems="10"
            android:hint="@string/login"
            android:inputType="text"
            android:singleLine="true"
            android:text="aneworld@gmail.com" >

            <requestFocus />
        </EditText>

        <EditText
            android:id="@+id/password"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:hint="@string/password"
            android:inputType="textPassword"
            android:singleLine="true"
            android:text="pandora9" />

        <Button
            android:id="@+id/submit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="8dp"
            android:text="@string/login_button" />

        <RelativeLayout
            android:id="@+id/RelativeLayout1"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:minHeight="100dp" >

            <TextView
                android:id="@+id/support"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_alignParentLeft="true"
                android:layout_gravity="bottom"
                android:layout_marginTop="0dp"
                android:layout_weight="1"
                android:gravity="center_horizontal|bottom"
                android:padding="8dp"
                android:text="@string/support_number" />

            <TextView
                android:id="@+id/forgot_password"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_above="@+id/support"
                android:layout_centerHorizontal="true"
                android:layout_marginBottom="20dp"
                android:padding="@dimen/space_between_views"
                android:text="@string/forgot_password" />

        </RelativeLayout>
    </LinearLayout>

</ScrollView>

我添加了 minHeight 参数,用于修复小屏幕的问题。但是,如果父级的剩余空间小于此 minHeight,则忘记密码的子级将转到父级的顶部,忽略 ABOVE 标志。为什么?

我知道其他方法可以使其正常工作,但我只想知道为什么会发生这种情况。

我添加了以下屏幕截图:

剩余空间较大,所以忘记密码是上面支持的: 剩余空间更大,所以忘记密码是上面的支持

剩余空间更小,所以忘记密码在父级上是最重要的: 剩余空间更小,所以忘记密码在父级上是最重要的

4

1 回答 1

0

不知道这个布局有什么问题,但尝试将所有其他视图包含在父布局中,并为该布局分配权重。那应该可以解决问题。

于 2013-07-03T09:20:26.347 回答