tags:

views:

65

answers:

2

Hi,

I am new to this Android application Programing.

I need to know the thing that, disable and hiding of one application from application menu list.

instead of deleting the entire application, that need to do some other changes to hide and disabling any application from menu list.

+1  A: 

Your manifest declares which components of your application are and aren't shown in the application draw. You can not modify this from within your application so you will be unable to hide your app programatically.

Al Sutton
can we able to change in android source code.
+2  A: 

If it is your application that you wish to hide, you can enable or disable the activity that has the LAUNCHER Intent filter via the PackageManager.

If it is somebody else's application that you wish to hide, that is not possible except via firmware.

CommonsWare