Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我获得已安装应用程序的列表时,我会通过小部件获得它们。但是,我不想看到小部件,因为它是一个应用程序启动器。我怎么做?
您需要将列表缩小到正确的类别:
Intent i = new Intent(Intent.ACTION_MAIN, null); i.addCategory(Intent.CATEGORY_LAUNCHER); List pkgAppsList = getPackageManager().queryIntentActivities( i, 0);