Skip to content Skip to sidebar Skip to footer

How To Hide/unhide Other Applications Icon?

I am developing a small application i.e AppHider In this i get the list of user installed applications and their launcher name also by getting their package name Now i want to hide

Solution 1:

you have to add package name instead of classname.this see below code

Replace your

ComponentNamecomponentName=newComponentName(SingleAppActivity.this, applauncher);

with

ComponentNamecomponentName=newComponentName("apppackagename","apppackagename.launcher classname"); 

Thats it...

Post a Comment for "How To Hide/unhide Other Applications Icon?"