使用箭头键导航文本视图
我的应用程序有一个简单的“关于”框。
它有一些可点击的 TextView(电子邮件地址、电话号码、地址),所有这些都包含在 ScrollView 内的相对布局中(以适应低分辨率屏幕)。
我正在测试的设备(摩托罗拉 Charm OS 版本 2.1 更新 1)具有常规 QWERTY 键盘。我面临的问题是使用箭头键。
我希望光标可预测地从一个可点击字段移动到下一个字段,这就是我需要帮助的地方。在不需要焦点的字段上,我设置了 android:cursorVisible="false"。我尝试使用 android:nextFocus* 属性,但仍然没有获得所需的行为。
光标卡在第一个字段中,总体行为有点不可预测。关于如何完成这项工作的任何想法。目前,使用代码捕获密钥似乎是唯一的选择。
My application has a simple 'About' box.
It has a few clickable TextViews (email addresses, phone nos, addresses) all contained within a relative layout within a ScrollView (To accommodate low res screens).
The device I am testing with (Motorola Charm O.S ver 2.1 update 1) has a regular QWERTY keyboard. The problem I am facing is with the use of the arrow keys.
I want the cursor to move predictably from one clickable field to the next and this is where I need help. On the fields that don't need focus I have set the android:cursorVisible="false".I tried using the android:nextFocus* properties but still don't get the desired behavior.
The cursor gets stuck in the first field and overall the behavior is a bit unpredictable. Any ideas on how to get this done. Right now trapping the keys using code seems to be the only option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文档有点简洁,但基本上就是您要查找的内容。
The documentation is a little terse but it's basically what you are looking for.