当我输入时,EditText停止显示字符?

时间:2011-05-13 08:02:53

标签: android android-edittext

基本上我会开始在键盘上输入(股票和第三方),突然它停止显示我在EditText中输入的字符,(有时)将插入符号重置为开头,但我知道我我还在打字,因为建议框显示我输入的字符。我在至少5种不同的设备和模拟器上都经历过这种行为,但似乎无法确定解决方案。

看似随机;我没有从系统中通过DDMS读取任何错误日志,所以我有点困惑。

Here is what it looks like

以下是EditText的XML布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ListView android:id="@android:id/list"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:transcriptMode="alwaysScroll"/>

<EditText android:id="@+id/etMain"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:inputType="text|textAutoCorrect"
    android:imeOptions="actionSend">
        <requestFocus />
    </EditText>
</LinearLayout>

这是我的活动代码:

    et = (EditText) findViewById(R.id.etMain);

    et.setOnEditorActionListener(new OnEditorActionListener() {
        @Override
        public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
            if ((event != null && (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) || actionId == EditorInfo.IME_ACTION_SEND) {
                String sendText = v.getText().toString();

                if (sendText.length() > 0) {
                    v.setText("");

                    ....

                    }
                }
                return true;
            }

            return false;
        }
    });

了解有关如何解决此问题的任何见解。如果您还有其他需要,请告诉我......

谢谢!

编辑:在编辑过程中,输入方法似乎与EditText断开连接。 有时发生时会收到此警告:WARN / IInputConnectionWrapper(1035):endBatchEdit on inactive InputConnection

1 个答案:

答案 0 :(得分:0)

另一位开发人员(不是我)可能已找到解决方法。查看缺陷报告中的this comment