Get a list of every launcher in Android

前端 未结 3 1071
不知归路
不知归路 2020-12-15 12:19

In my application I want to show a list of every available launcher (for homescreen) on that specific Android phone. Is it possible to get some kind of information from Andr

3条回答
  •  無奈伤痛
    2020-12-15 12:46

    Try the following:

    1. Obtain the list of installed applications:

      List pkgList = getPackageManager().getInstalledPackages(PackageManager.GET_ACTIVITIES);

    2. Iterate over this list and obtain launcher activity using:

      getPackageManager().getLaunchIntentForPackage(packageName);

    For details read here: PackageManager. Hope this helps.

提交回复
热议问题