此锁屏应用中如何禁用主页按钮: https://play.google.com/store/apps/details?id=com.appershopper.ios7lockscreen 我知道这个应用程序是作为启动器创建的,但是如何在用户点击锁定屏幕活动中的主页按钮和主屏幕时知道什么?
答案 0 :(得分:1)
由于显而易见的原因,您无法在Android中收听主页按钮事件。作为用户,我不喜欢这样。
但是,如果您希望在按下主页按钮时触发您的活动(类似于启动器应用程序的工作方式),您可以为该活动添加意图过滤器:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>