美文网首页
android:focusableInTouchMode详解

android:focusableInTouchMode详解

作者: 使劲挤海绵 | 来源:发表于2017-12-18 14:27 被阅读120次
        对于一个拥有触摸屏功能的设备而言, 一旦用户用手点击屏幕, 设备会立刻进入touch mode。这时候被点击的控件只有isFocusableInTouchMode()为true的时候才会获得focus,比如EditText控件。
        其他可以触摸的控件比如Button(其isFocusableInTouchMode默认为false), 当被点击的时候不会获取焦点,它们只是简单地执行onClick事件而已。
    

    参考自:https://www.cnblogs.com/xiaoweiz/p/3833079.html?utm_source=tuicool

    相关文章

      网友评论

          本文标题:android:focusableInTouchMode详解

          本文链接:https://www.haomeiwen.com/subject/crhmwxtx.html