gpt4 book ai didi

android - EditText 在我键入时停止显示字符?

转载 作者:太空宇宙 更新时间:2023-11-03 11:22:16 25 4
gpt4 key购买 nike

基本上发生的事情是我将开始在键盘上打字(标准和第三方),突然它停止显示我在 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>

这是我在 Activity 中的代码:

    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

最佳答案

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

关于android - EditText 在我键入时停止显示字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5988976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com