博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android24以上拍照代码
阅读量:6690 次
发布时间:2019-06-25

本文共 918 字,大约阅读时间需要 3 分钟。

public void takePic(){        //创建File对象,用于存储拍照后的照片        File outputImage = new File(getExternalCacheDir(),"output_image.jpg");        try {            if (outputImage.exists()){                outputImage.delete();            }            outputImage.createNewFile();        }catch (IOException e){            e.printStackTrace();        }        if (Build.VERSION.SDK_INT >= 24){            imageUri = FileProvider.getUriForFile(AddNewActivity.this,"com.example.cameraalbumtest.fileprovider",outputImage);        }else {            imageUri = Uri.fromFile(outputImage);        }        //启动相机程序        Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");        intent.putExtra(MediaStore.EXTRA_OUTPUT,imageUri);        startActivityForResult(intent,TAKE_PHOTO);    }

还有Manifest文件

xml文件

 

转载于:https://www.cnblogs.com/fengfenghuifei/p/10308000.html

你可能感兴趣的文章
POJ 1679 The Unique MST 【最小生成树/次小生成树模板】
查看>>
什么是动态链接库
查看>>
mysqldump 定时任务 执行后备份的文件为空
查看>>
Python-Django 模型层-单表查询
查看>>
Windows Redis默认配置文件,Redis配置不生效解决方案
查看>>
oracle-------window安装
查看>>
I/O完成端口、异步I/O、APC和线程池(四)——线程池
查看>>
获取Java程序运行的路径 | 获取当前jar包的路径
查看>>
摆脱京城贵妇unittest的骚套路discover,自定义用例执行顺序。
查看>>
selenium webdriver 学习笔记(二)
查看>>
GridView数据绑定控件的模版列时设置显示的格式
查看>>
在SQL SERVER中实现RSA加解密函数(第一版)
查看>>
判断ios或者android
查看>>
C语言中的注释
查看>>
Working with BeforeProperties and AfterProperties on SPItemEventReceiver
查看>>
JavaSE复习(一)继承多态与常用API
查看>>
php 上传文件名出现乱码
查看>>
Python 日期与时间
查看>>
CF467D Fedor and Essay 建图DFS
查看>>
[android] 手机卫士欢迎页检测更新
查看>>