Home button listener

后端 未结 4 750
面向向阳花
面向向阳花 2020-11-30 13:24

Using the setOnKeyListener I can able to listen for all physical buttons except Home and End button, is there any possibility to catch the action of Home button.

4条回答
  •  感情败类
    2020-11-30 14:06

    This is only possible if you modify the main android source code. Although this is not recommended for app purposes. But more geared towards hidden menus.

    public static final int KEYCODE_HOME
    
    Since: API Level 1
    Key code constant: Home key. This key is handled by the framework and is never delivered to applications.
    Constant Value: 3 (0x00000003)
    

提交回复
热议问题