美文网首页Android笔记
Android 限制只调用系统相机 不弹出应用选择器

Android 限制只调用系统相机 不弹出应用选择器

作者: Cedric_h | 来源:发表于2019-07-25 00:08 被阅读0次

原文:https://blog.csdn.net/uyy203/article/details/54445150

Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

//限制只调用系统相机
final Intent intent_camera = ((Activity)getContext()).getPackageManager()
        .getLaunchIntentForPackage("com.android.camera");
if (intent_camera != null) {
    i.setPackage("com.android.camera");
}


i.putExtra(MediaStore.Images.Media.ORIENTATION, 0);
i.putExtra(MediaStore.EXTRA_OUTPUT, u);
((Activity)getContext()).startActivityForResult(i, 1);

相关文章

网友评论

    本文标题:Android 限制只调用系统相机 不弹出应用选择器

    本文链接:https://www.haomeiwen.com/subject/vsbqrctx.html