我有一个普通的 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:background="@drawable/pick_school_bitmap_bg"
>
<LinearLayout
android:id="@+id/customer_action_bar"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@drawable/bg_action_bar_repeat"
android:orientation="horizontal"
>
<Button
android:id="@+id/home"
android:layout_width="48dp"
android:layout_height="match_parent"
android:background="@drawable/pick_school_item_background"
android:drawableLeft="@drawable/home_as_up_indicator"
android:drawableRight="@drawable/pick_school_ic_menu_search"
android:orientation="horizontal"
android:paddingLeft="8dp"
android:paddingRight="8dp" />
<EditText
android:id="@+id/input_search_school"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/pick_school_textfield_activated"
android:hint="@string/pick_school_search_hint"
android:imeOptions="actionSearch"
android:inputType="text"
android:singleLine="true"
android:textColor="@color/white"
android:textColorHint="@color/white"
/>
</LinearLayout>
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/customer_action_bar"
layout="@layout/pick_school_search_view" />
</RelativeLayout>
太奇怪了,软键盘显示并迅速消失:日志信息是:
09-16 17:55:08.472: D/InputMethodManager(31721): onInputShownChanged: true
09-16 17:55:08.527: D/InputMethodManager(31721): onInputShownChanged: false
09-16 17:55:09.282: D/InputMethodManager(31721): onInputShownChanged: true
09-16 17:55:09.322: D/InputMethodManager(31721): onInputShownChanged: false
09-16 17:55:09.522: D/InputMethodManager(31721): onInputShownChanged: true