解决方案 »

  1.   

    不是,HOME键直接回到Launcher,也就是桌面上了,我需要的是类似在桌面上按下应用程序那个键进入的界面
      

  2.   


      Intent intent = new Intent("/");
      ComponentName cm = new ComponentName("com.android.settings","com.android.settings.ManageApplications");
      intent.setComponent(cm);
      intent.setAction("android.intent.action.VIEW");
      activity.startActivityForResult( intent , 0);
      

  3.   

    这个调用的是设置里面的应用程序管理界面。不是主界面Launcher中的那个应用程序界面,不过还是谢谢
      

  4.   

    有个packageManager 的东西貌似可以查看本机应用,至于是否是系统默认 你看一下是否有关键字吧