我遇到了EditText的问题(仅在QVGA设备上,我在QVGA仿真器和三星i5500上进行了测试)。
当用户点击EditText并且软键盘出现时,只有用户输入的第一个字母出现在该字段上。其他只会在用户关闭键盘或其他事件发生时显示。
我不知道这是否是一个错误(它适用于更高级别的模拟器),但是我现在可以用来为我的用户提供更好的体验吗?
我的(杂乱)代码在这里: https://github.com/bani/SMS-Denuncia/tree/master/android/
我遇到问题的EditText是 https://github.com/bani/SMS-Denuncia/blob/master/android/res/layout/local.xml
<EditText android:id="@+id/vagao2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLength="12"
android:textSize="18sp"
android:text=""
android:imeOptions="actionSend"
android:visibility="invisible" />
答案 0 :(得分:0)
当我用ScrollView包围我的布局时,不知何故它得到修复。