私は1つの画像ビュー、2つの編集テキスト、1つのボタンを持つレイアウトを持っています。最初の編集テキストをクリックすると、仮想キーボードのために2番目にスクロールして入力することもできません。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal" >
<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:src="@drawable/logo"
android:contentDescription="@string/invokeme" />
<EditText
android:id="@+id/login"
android:layout_height="wrap_content"
android:layout_width="235dip"
android:ems="10"
android:layout_marginTop="25dp"
android:layout_below="@id/logo"
android:hint="@string/login" />
<EditText
android:id="@+id/password"
android:inputType="textPassword"
android:layout_height="wrap_content"
android:layout_width="235dip"
android:ems="10"
android:layout_marginTop="5dp"
android:layout_below="@id/login"
android:hint="@string/password" />
<Button
android:id="@+id/submitLogin"
android:layout_width="235dip"
android:layout_height="wrap_content"
android:ems="12"
android:text="@string/login"
android:layout_below="@id/password"/>
</RelativeLayout>