0

我有一个普通的 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

4

2 回答 2

0

尝试在 Manifest 文件中添加这一行

android:windowSoftInputMode="stateAlwaysHidden|adjustResize|adjustPan"

将焦点设置在edittext上,这样键盘就会弹出

<EditText
            android:id="@+id/idEditText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:inputType="textCapCharacters"
            android:paddingLeft="20dp"
            android:textSize="24sp" >

<requestFocus />
</EditText>

用java代码试试

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(edittext, 0);
于 2013-09-16T10:12:05.387 回答
0

显示软键盘。你能试试这个吗?

InputMethodManager inputManager = (InputMethodManager)            
    Context.getSystemService(Context.INPUT_METHOD_SERVICE); 
    inputManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(),      
    InputMethodManager.HIDE_NOT_ALWAYS);

您可以添加的另一件事 onEditTextFocusable() 手动强制键盘可见。

于 2013-09-16T09:32:26.333 回答