Search code examples
javaandroidandroid-manifest

Remove application from launcher programmatically in Android


Is there a way of removing an activity from the home launcher at runtime? I mean removing Intent.CATEGORY_LAUNCHER from its properties or something similar.


Solution

  • You can disable a component via PackageManager#setComponentEnabledSetting(), which will have the effect of removing it from the Launcher.