如何获取相机应用程序的包名称

时间:2012-03-12 10:04:56

标签: android

感谢之前的回复,

是否可以获取设备上安装的相机应用程序的包名称?如果自定义操作系统,则设备制造商会更改默认包名称。如何通过编码获取包名?我不确定这是可能的。

4 个答案:

答案 0 :(得分:10)

你试过这个吗?

    PackageManager packman = getPackageManager();
    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    String pack = intent.resolveActivity(packman).getPackageName();

答案 1 :(得分:7)

我不确定,但我认为您可以使用指定的意图获取应用程序的包名称 ..

查看此代码以获取处理特定意图的可用应用程序信息,

/**
 * Indicates whether the specified action can be used as an intent. This
 * method queries the package manager for installed packages that can
 * respond to an intent with the specified action. If no suitable package is
 * found, this method returns false.
 *
 * @param context The application's environment.
 * @param action The Intent action to check for availability.
 *
 * @return True if an Intent with the specified action can be sent and
 *         responded to, false otherwise.
 */
public static boolean isIntentAvailable(Context context, String action) {
    final PackageManager packageManager = context.getPackageManager();
    final Intent intent = new Intent(action);
    List list =
            packageManager.queryIntentActivities(intent,
                    PackageManager.MATCH_DEFAULT_ONLY);
    return list.size() > 0;
}

现在使用相机意图,您可以获取处理IMAGE_CAPTURE意图的应用程序信息,并使用该信息轻松获取包名称。

<强>更新

在您的情况下,具体意图是

Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

修改

List<ResolveInfo> listCam = packageManager.queryIntentActivities(intent, 0);
for (ResolveInfo res : listCam) {
    Log.e("Camera Application Package Name and Activity Name",res.activityInfo.packageName + " " + res.activityInfo.name));
}

试试这个,让我知道发生了什么......

答案 2 :(得分:0)

请参阅http://www.androidsnippets.com/get-installed-applications-with-name-package-name-version-and-icon

class PInfo {
    private String appname = "";
    private String pname = "";
    private String versionName = "";
    private int versionCode = 0;
    private Drawable icon;
    private void prettyPrint() {
        Log.v(appname + "\t" + pname + "\t" + versionName + "\t" + versionCode);
    }
}

private ArrayList<PInfo> getPackages() {
    ArrayList<PInfo> apps = getInstalledApps(false); /* false = no system packages */
    final int max = apps.size();
    for (int i=0; i<max; i++) {
        apps.get(i).prettyPrint();
    }
    return apps;
}

private ArrayList<PInfo> getInstalledApps(boolean getSysPackages) {
    ArrayList<PInfo> res = new ArrayList<PInfo>();        
    List<PackageInfo> packs = getPackageManager().getInstalledPackages(0);
    for(int i=0;i<packs.size();i++) {
        PackageInfo p = packs.get(i);
        if ((!getSysPackages) && (p.versionName == null)) {
            continue ;
        }
        PInfo newInfo = new PInfo();
        newInfo.appname = p.applicationInfo.loadLabel(getPackageManager()).toString();
        newInfo.pname = p.packageName;
        newInfo.versionName = p.versionName;
        newInfo.versionCode = p.versionCode;
        newInfo.icon = p.applicationInfo.loadIcon(getPackageManager());
        res.add(newInfo);
    }
    return res; 
}

答案 3 :(得分:0)

我想这是不可能或不可能的。您可以枚举所有系统软件包(随设备提供的应用程序)并尝试选择具有CAMERA权限的软件包。但是这种方法可以为您提供多种应用,因为有些应用可以根据需要使用相机。但总的来说,我猜这是不可能的。