Android:单击 EditText 时启动活动
当用户触摸 EditText(如 Facebook 搜索和 Google 搜索小部件中)时,如何启动新活动?
设置 setOnClickListener
仅在第一次单击后起作用。第一次单击时,EditText 会突出显示,并且键盘会弹出。第二次单击时,它将打开新活动。 我不想要这个,相反我想在第一次点击时打开活动。我该怎么做?
How do I start a new activity when the user touches an EditText like in the Facebook search and Google search widget?
Setting setOnClickListener
works only after the first click. On the first click the EditText becomes highlighted, and keyboard pops up. On second click it opens the new activity.
I do not want this, instead I want to open the activity on the very first click. How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要在触摸模式下禁用 EditText 的焦点,这将使 onclick 在第一次点击时执行:
You need to disable the EditText's focus in touch mode, that will make the onclick execute on the first tap:
将 EditText 的输入类型设置为 InputType.TYPE_NULL:
,这样在接收用户交互时会隐藏软键盘。启动活动:
当然,
onEditTextClick
方法必须注册到EditText
对象:)Set the input type of the EditText to InputType.TYPE_NULL:
, which hides the soft keyboard while receiving user interaction. Start the activity:
Of course, the
onEditTextClick
method has to be registered to theEditText
object:)请尝试这个
和
Please, Try this
and