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>
)