当键盘出现时,android make layout可滚动

时间:2017-04-26 06:39:36

标签: android xml scrollview

我有一个全屏高度的布局,当点击edittext softinputkeyboard时会包含2个edittext,其中包含我的其他视图的其余部分

我用过  的机器人:windowSoftInputMode = “adjustResize” 但它只是缩小了我的观点。我想要的是当softinputkeyboard出现时,视图应该是可滚动的。

听到我的xml

      <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/activity_sign_in"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">



        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:weightSum="10"
            android:orientation="vertical"
            android:background="#fff"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true">
            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="0dp"
                android:layout_weight="4">

    </LinearLayout>
</ScrollView>

</RelativeLayout>

如果直接添加scrollview视图会变得更大。或删除所有空白区域 独立于我给布局的重量。

2 个答案:

答案 0 :(得分:0)

找到解决方案

在清单文件中:

    android:windowSoftInputMode="stateAlwaysHidden|adjustResize"

答案 1 :(得分:0)

尝试{{1}}