奇妙な問題があります。私は、いくつかの固定サイズの要素を含む LinearLayout と、親スペースの残りのスペースを使用する 1 つの ReletiveLayout を持っています (weight=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 フラグは無視されます。なんで?
これを機能させる他の方法は知っていますが、なぜこれが起こるのか知りたいだけです。
何のスクリーンショットを追加しました:
残りのスペースが大きいため、パスワードを忘れた場合はサポートを超えています:
残りのスペースが少ないため、パスワードを忘れた場合が親の一番上に表示されます: