How to remove an activity from showing in the Launcher programmatically?

Shawn Hazen

So I have one app that displays multiple activities in the Launcher using

<category android:name="android.intent.category.LAUNCHER"/>

I want to know how to programmatically toggle this on/off, I will be needing to do so based on some data I will be receiving. Is this possible? If so, how can it be done.

CommonsWare

You can call setComponentEnabledSetting() on PackageManager to enable and disable the activity. Well-written home screen implementations will remove the launcher icon when you disable the activity with the LAUNCHER category.

However, bear in mind that some home screen implementations will cache the information that they obtain from PackageManager and therefore may continue to show the icon, until they refresh their contents. There is nothing much that you can do about this.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to start launcher activity from another activity?

From Dev

How can I configure Launcher activity programmatically in android?

From Dev

Eclipse showing No launcher Activity found

From Dev

how to remove google Chrome App Launcher from ubuntu 14.04 launcher

From Dev

Android can't start launcher activity programmatically

From Dev

How to resume Android Activity programmatically from background

From Dev

Clearing the Launcher Activity from the stack

From Dev

How can I get integer value from activity-launcher to activity-default

From Dev

How to remove obsolete shortcut from the Files launcher icon?

From Dev

How to keep icon in unity launcher and remove from desktop?

From Dev

How can I remove the "Dash Home" icon from the Unity launcher?

From Dev

How to remove workspace switcher icon from launcher without disabling workspaces?

From Dev

How can I remove the "Dash Home" icon from the Unity launcher?

From Dev

How to remove workspace switcher icon from launcher without disabling workspaces?

From Dev

How to remove obsolete shortcut from the Files launcher icon?

From Dev

How to keep icon in unity launcher and remove from desktop?

From Dev

How can I remove google chrome from launcher?

From Dev

How can I remove the Trash icon from the Unity launcher?

From Dev

How can I remove the workspace switcher icon from Unity launcher?

From Dev

How to remove a control from window programmatically?

From Dev

How to remove DataColumn from DataTable programmatically

From Dev

How to remove activity from back stack in android?

From Dev

How remove last activity from the stack?

From Dev

How to remove an Activity from a WorkFlow in BroadleafCommerce?

From Dev

How to remove activity from multiple feeds?

From Dev

How to remove title bar from the android activity?

From Dev

How to remove an Activity from a WorkFlow in BroadleafCommerce?

From Dev

How to remove activity from back stack in android?

From Dev

How to remove splash activity from an existing project?

Related Related

  1. 1

    How to start launcher activity from another activity?

  2. 2

    How can I configure Launcher activity programmatically in android?

  3. 3

    Eclipse showing No launcher Activity found

  4. 4

    how to remove google Chrome App Launcher from ubuntu 14.04 launcher

  5. 5

    Android can't start launcher activity programmatically

  6. 6

    How to resume Android Activity programmatically from background

  7. 7

    Clearing the Launcher Activity from the stack

  8. 8

    How can I get integer value from activity-launcher to activity-default

  9. 9

    How to remove obsolete shortcut from the Files launcher icon?

  10. 10

    How to keep icon in unity launcher and remove from desktop?

  11. 11

    How can I remove the "Dash Home" icon from the Unity launcher?

  12. 12

    How to remove workspace switcher icon from launcher without disabling workspaces?

  13. 13

    How can I remove the "Dash Home" icon from the Unity launcher?

  14. 14

    How to remove workspace switcher icon from launcher without disabling workspaces?

  15. 15

    How to remove obsolete shortcut from the Files launcher icon?

  16. 16

    How to keep icon in unity launcher and remove from desktop?

  17. 17

    How can I remove google chrome from launcher?

  18. 18

    How can I remove the Trash icon from the Unity launcher?

  19. 19

    How can I remove the workspace switcher icon from Unity launcher?

  20. 20

    How to remove a control from window programmatically?

  21. 21

    How to remove DataColumn from DataTable programmatically

  22. 22

    How to remove activity from back stack in android?

  23. 23

    How remove last activity from the stack?

  24. 24

    How to remove an Activity from a WorkFlow in BroadleafCommerce?

  25. 25

    How to remove activity from multiple feeds?

  26. 26

    How to remove title bar from the android activity?

  27. 27

    How to remove an Activity from a WorkFlow in BroadleafCommerce?

  28. 28

    How to remove activity from back stack in android?

  29. 29

    How to remove splash activity from an existing project?

HotTag

Archive