如何让softkeaybord覆盖只定义视图?

时间:2013-05-17 14:06:22

标签: android-layout android-softkeyboard

我的布局有以下结构:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

       <ScrollView
            android:id="@+id/login_form"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

             ....

        </ScrollView>


    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="90dp"
        android:layout_gravity="bottom"
        android:baselineAlignBottom="true"
        android:src="@drawable/logotyp" />

</LinearLayout>

当出现软键盘时,ImageView会向上移动并调整ScrollView的大小。我想让ImagView被软键盘遮挡,ScrollView仍然调整大小。可能吗?

1 个答案:

答案 0 :(得分:0)

我认为解决方案是监控height change events,然后在事情变小时将ImageView可见性设置为View.GONE