Guest binary_digit_2002 Posted April 23, 2010 Report Posted April 23, 2010 Is there any way I can hide icons in the program list. It would be great if I could hide some of the standard programs that come pre-installed... Thanks! :huh:
Guest binary_digit_2002 Posted May 6, 2010 Report Posted May 6, 2010 I've now rooted my Desire, how do i go around hiding the icons now... :P
Guest NarutoDKz Posted May 20, 2010 Report Posted May 20, 2010 I would like to know this to. :rolleyes:
Guest Nguyễn Khải Posted July 23, 2010 Report Posted July 23, 2010 (edited) I have been solver this problem by remove this code in manifest file: <category android:name="android.intent.category.LAUNCHER" /> By remove this code in manifest file, your app will be set up but no icon in main menu, you can call this app by: final Intent intent = new Intent(Intent.ACTION_MAIN, null); intent.addCategory(Intent.CATEGORY_LAUNCHER); final ComponentName cn = new ComponentName("Your-app-packet-name", "Your-app-packet-class-to-lauch"); // ex: final ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.fuelgauge.PowerUsageSummary"); intent.setComponent(cn); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity( intent); in another application! It really good? Edited July 23, 2010 by Nguyễn Khải
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now