自定义首选项,包括 EditText
我正在创建一个包含 EditText
的自定义首选项。
问题是当用户单击 EdiText
输入建议框打开时,EditText
失去焦点。当再次点击EditText
进行输入时,直到输入“空格”才会出现问题,从而导致出现建议框并因此失去焦点。
我所说的建议框是指在 EditText
中输入文本时弹出的框
I am creating an custom preference which contains an EditText
.
The problem is when user clicks the EdiText
for input suggestion box opens up and EditText
looses focus. When EditText
is clicked again for input, no problem occurs until 'blank space' is entered, which results in suggestion box and hence loss of focus.
What I mean by suggestion box is the box which pops up when entering text in EditText
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过在 XML 文件中使用
android:inputType="textFilter"
属性来禁用自动建议。You can disable Auto Suggestion by using
android:inputType="textFilter"
attribute in your XML file.另一个对我有用的解决方案:
在 AndroidMenifest.xml 活动中添加 android:windowSoftInputMode="adjustPan" 。
在这里找到:
http://www.mail-archive.com/[电子邮件受保护]/msg132688.html
Another solution that worked for me:
In AndroidMenifest.xml add android:windowSoftInputMode="adjustPan" in the activity.
Found here:
http://www.mail-archive.com/[email protected]/msg132688.html