0

好的,所以我有一个登录屏幕,其中包含 2 个 EditText 字段(用户名)和(密码)。

我已经做到了

<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/white"
    android:fillViewport="true" android:layout_weight="1">

<LinearLayout
android:id="@+id/rootView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical">

    <ImageView
        android:id="@+id/logo"
        android:layout_width="280dp"
        android:layout_height="80dp"
        android:contentDescription="@string/app_name"
        android:src="@drawable/logo"/>

    <EditText
        android:id="@+id/username"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:hint="@string/email"
        android:inputType="textEmailAddress"
        android:singleLine="true">
    </EditText>

    <EditText
        android:id="@+id/password"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:hint="@string/password"
        android:inputType="textPassword"
        android:singleLine="true"/>

    <Button
        android:id="@+id/btnLogin"
        android:layout_width="130dp"
        android:layout_height="34dp"
        android:layout_marginTop="20dp"
        android:background="@drawable/login_button"
        android:onClick="onLoginClick"/>

    <TextView
        android:id="@+id/btnMoreInfo"
        android:layout_width="wrap_content"
        android:layout_height="34dp"
        android:clickable="true"
        android:layout_marginTop="20dp"
        android:text="@string/more_about"
        android:onClick="onMoreInfo"/>

我的问题是当我点击用户名时,键盘会隐藏 android:id="@+id/btnMoreInfo" 按钮。我将 android:windowSoftInputMode="adjustResize" 添加到活动清单文件中,但没有任何效果。任何线索如何做到这一点?

4

2 回答 2

0

使用RelativeLayout代替LinearLayout, 和

     <TextView
            android:id="@+id/btnMoreInfo"
            ...
            android:layout_alignParentBottom="true"
      />

     <Button
            android:id="@+id/btnLogin"
            ...
            android:layout_above="@id/btnMoreInfo"
      />
于 2013-08-09T16:48:18.087 回答
0

我会做LinearLayout的android:layout_height="wrap_content"

于 2013-08-09T14:17:12.613 回答