Android scrollView没有调整大小

时间:2013-08-09 14:12:35

标签: android resize scrollview android-softkeyboard

好的,所以我的登录界面有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”添加到actity清单文件中但没有任何工作。任何线索怎么做?

2 个答案:

答案 0 :(得分:0)

我会制作LinearLayout的android:layout_height="wrap_content"

答案 1 :(得分:0)

使用RelativeLayout代替LinearLayout

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

     <Button
            android:id="@+id/btnLogin"
            ...
            android:layout_above="@id/btnMoreInfo"
      />