每次布局变得可见时都会出现软键盘

时间:2011-10-06 18:32:01

标签: android android-widget

我在一个片段中有两个布局,我可以通过使一个看不见而另一个看不见来反复切换,反之亦然。当包含EditText的布局变得可见时,软键盘会自动弹出。我在清单中使用了以下内容,但没有帮助。

android:windowSoftInputMode="stateUnchanged"

我从未明确要求专注于EditText,甚至尝试过关注其他内容无效。

<?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:id="@+id/container">
    <LinearLayout android:id="@+id/dial_pad_ll"
        android:layout_width="match_parent" android:layout_height="match_parent"
        android:orientation="vertical" android:layout_centerInParent="true"
        android:background="#1E1E1E" android:layout_marginLeft="20dp" android:layout_marginRight="20dp">
        <EditText android:layout_height="wrap_content" android:id="@+id/search_et"
            android:layout_width="match_parent" android:layout_alignParentTop="true"
            android:layout_marginTop="20dp" android:layout_marginBottom="10dp" >
        </EditText>
        <!-- Other widgets here -->
    </LinearLayout>
    <!-- Other Layout Here -->
</RelativeLayout>

任何人都知道如何预防这种情况?感谢。

编辑:我也应该提到这不会在第一次发生。我用编辑文本打开布局1,使其不可见,再次使其可见,然后键盘弹出。

1 个答案:

答案 0 :(得分:1)

尝试将此添加到您的活动中。

this.getWindow().setSoftInputMode(
                WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);