android - 可聚焦和可聚焦InTouchMode之间的区别?

标签 android focus focusable

我想知道它们之间的实际区别......什么时候应该使用,应该如何使用,在哪些情况下有帮助?

举几个例子,详细解释一下。

最佳答案

在 Android 开发者博客中有解释:http://android-developers.blogspot.co.at/2008/12/touch-mode.html

下面的引号应该清楚:

By itself, the touch mode is something very easy to understand as it simply indicates whether the last user interaction was performed with the touch screen. For example, if you are using a G1 phone, selecting a widget with the trackball will take you out of touch mode;

...

In touch mode, there is no focus and no selection. Any selected item in a list of in a grid becomes unselected as soon as the user enters touch mode. Similarly, any focused widgets become unfocused when the user enters touch mode.

...

Now that you know focus doesn't exist in touch mode, I must explain that it's not entirely true. Focus can exist in touch mode but in a very special way we call focusable in touch mode. This special mode was created for widgets that receive text input, like EditText or, when filtering is enabled, ListView.

...

Focusable in touch mode is a property that you can set yourself either from code or XML. However, it should be used sparingly and only in very specific situations as it breaks consistency with Android normal behavior. A game is a good example of an application that can make good use of the focusable in touch mode property. MapView, if used in fullscreen as in Google Maps, is another good example of where you can use focusable in touch mode correctly.

关于android - 可聚焦和可聚焦InTouchMode之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24155956/

相关文章:

android - 使编辑文本出现在android中设备的顶部和软键盘之间

android - Edittext android 自动对焦

android - 有什么方法可以更改 android 中所有 ListView 的默认按下颜色吗?

android - Android 上使用了哪些架构模式?

android - Ionic config.xml 针对不同平台的不同小部件 id

jquery - 将焦点放在悬停 jquery 上的隐藏元素上

android - 如果双 SIM 卡槽之一的 SIM 卡发生更改,如何检索该卡的信息?

Android EditText.setError 无法在无法聚焦的情况下工作

javascript - 无法在 Firefox 下将键盘聚焦于 SVG 中的 <a> 链接元素

java - Android 如何为 LinearLayout(或其他 View )设置可点击和可聚焦