Android Question lock key home

roby128128

Member
Hello and thanks for your help, I've been looking for a long time how to lock the home button, and I finally solved it by editing the manifest, it's my app now it's the main launcer. By pressing the home button my app is always active, now I need to call up the menu of the other apps from my app. How can I open the menu? Thank you
Lock key home:
AddActivityText(Main,
<intent-filter>
  <action android:name="android.intent.action.MAIN" />             
<category android:name="android.intent.category.HOME" />                 
<category android:name="android.intent.category.DEFAULT" />               
<category android:name="android.intent.category.MONKEY"/>
</intent-filter>
)
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
The only working way to catch the home button is with a real kiosk app.

 
Upvote 0

roby128128

Member
the lancer works and by pressing the home button I stay in my application, but that's fine, I wanted to know how to call up the lancer app menu
 
Upvote 0
Top