3

我正在尝试开发一个具有以下要求的android应用程序。有没有办法通过代码,我可以在调试模式下获取设备上安装的应用程序列表。

提前致谢。

编辑 - 我尝试了以下代码。

 PackageManager pm = getPackageManager();
         List<ApplicationInfo> packages = pm.getInstalledApplications(PackageManager.GET_META_DATA);

        for (int i=0; i < packages.size(); i++)
            {
                if ((packages.get(i).flags & ApplicationInfo.FLAG_SYSTEM) == 1)
                {
                     //This is for System applications
                }
                else
                {

                    boolean isDebuggable =  (0 != ( getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE ) );

                    if((pm.getLaunchIntentForPackage(packages.get(i).packageName)!=null) && (isDebuggable = true) )                 
                    {
                        // Only For Apps with debug mode set true, this line should get executed 
                        // But this does not happens
                    }
                }
            }
4

3 回答 3

2

干得好,

Intent main = new Intent(Intent.ACTION_MAIN, null);
main.addCategory(Intent.CATEGORY_LAUNCHER);
List pkgAppsList = context.getPackageManager().queryIntentActivities( main, 0);

这应该为您提供足够的信息以启动应用程序。

于 2013-01-17T15:08:43.870 回答
1

我尝试了各种方法,但据我了解,我们无法单独获取处于调试模式的应用程序列表。

通过使用标志,我们只能获取具有此代码的应用程序,而不是设备上运行的其他应用程序。

无论如何谢谢。如果有人有不同的想法,请告诉我。

于 2013-01-22T08:03:23.390 回答
0

来自贾斯汀的回答

科特林

val allIntent = Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER)
val allApps = packageManager.queryIntentActivities(allIntent, 0)
val debugApps = arrayListOf<ActivityInfo>()

allApps.forEach {
    val appInfo = (packageManager.getApplicationInfo(
        it.activityInfo.packageName,
        0
    ))
    if (0 != appInfo.flags and ApplicationInfo.FLAG_DEBUGGABLE) {
        debugApps.add(it.activityInfo)
    }
}

debugApps.forEach {
    Log.d("debugApps", it.packageName)
}

可以获取所有处于调试模式的应用程序。在我的设备中,我获得了使用 Android Studio 安装的所有应用程序。

于 2019-12-09T03:31:29.520 回答