从应用程序启动“启动器应用程序抽屉”?

时间:2012-03-10 03:38:34

标签: android android-4.0-ice-cream-sandwich

我想从应用程序启动(或返回)带有平铺应用程序图标的launcher app drawer,而不是桌面。

Intent intent = new Intent("android.intent.action.MAIN");
intent.setComponent(new ComponentName("com.android.launcher","com.android.launcher2.Launcher"));
intent.addCategory("android.intent.category.LAUNCHER");
startActivity(intent);

此代码“启动”桌面。我想reach the app icons。我怎样才能做到这一点? Manifest of Launcher似乎没有为此提供任何活动?

格雷瓜尔

1 个答案:

答案 0 :(得分:0)

正如anal所指出的那样,你无法调用此视图,因为Android在启动器应用清单中没有公开它。