博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Android 中调用选择图片、视频、添加音频、录音、拍摄视频、拍照等其他的功能
阅读量:4171 次
发布时间:2019-05-26

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

//选择图片 requestCode 返回的标识

  Intent innerIntent = new Intent(Intent.ACTION_GET_CONTENT); //"android.intent.action.GET_CONTENT"

  innerIntent.setType(contentType); //查看类型 String IMAGE_UNSPECIFIED = "image/*"; 详细的类型在 com.google.android.mms.ContentType 中

  Intent wrapperIntent = Intent.createChooser(innerIntent, null);

  ((Activity) context).startActivityForResult(wrapperIntent, requestCode);

  //视频

  Intent innerIntent = new Intent(Intent.ACTION_GET_CONTENT);

  innerIntent.setType(contentType); //String VIDEO_UNSPECIFIED = "video/*";

  Intent wrapperIntent = Intent.createChooser(innerIntent, null);

  ((Activity) context).startActivityForResult(wrapperIntent, requestCode);

  //添加音频

  Intent innerIntent = new Intent(Intent.ACTION_GET_CONTENT);

  innerIntent.setType(contentType); //String VIDEO_UNSPECIFIED = "video/*";

  Intent wrapperIntent = Intent.createChooser(innerIntent, null);

  ((Activity) context).startActivityForResult(wrapperIntent, requestCode);

  //录音

  Intent intent = new Intent(Intent.ACTION_GET_CONTENT);

  intent.setType(ContentType.AUDIO_AMR); //String AUDIO_AMR = "audio/amr";

  intent.setClassName("com.android.soundrecorder",

  "com.android.soundrecorder.SoundRecorder");

  ((Activity) context).startActivityForResult(intent, requestCode);

  //幻灯片头大 不做详细

  //拍摄视频

  int durationLimit = getVideoCaptureDurationLimit(); //SystemProperties.getInt("ro.media.enc.lprof.duration", 60);

  Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);

  intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);

  intent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, sizeLimit);

  intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, durationLimit);

  startActivityForResult(intent, REQUEST_CODE_TAKE_VIDEO);

  //拍照 REQUEST_CODE_TAKE_PICTURE 为返回的标识

  Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); //"android.media.action.IMAGE_CAPTURE";

  intent.putExtra(MediaStore.EXTRA_OUTPUT, Mms.ScrapSpace.CONTENT_URI); // output,Uri.parse("content://mms/scrapSpace");

  startActivityForResult(intent, REQUEST_CODE_TAKE_PICTURE);

转载地址:http://lyyai.baihongyu.com/

你可能感兴趣的文章
运动—运动框架
查看>>
关于教材中不懂的问题
查看>>
BodyTagSupport小案例1
查看>>
c++ simple class template example: Stack
查看>>
ERROR C3848:具有类型"const XXX" 的表达式会丢失一些 const-volatile 限定符以调用"YYY" with"ZZZ"...
查看>>
TCP/UDP 、HTTP、IP 、socket 的关系。
查看>>
JavaWeb知识点:JS与xml
查看>>
Azure降价辣么多,省下的预算该怎么花?
查看>>
android#ListView的简单用法
查看>>
【week2】Scrum中的站立会议
查看>>
R dataframe 遗忘, which 矩阵搜索
查看>>
kernel function
查看>>
【资源分享】ArcFace Demo [Android]
查看>>
SharePoint 2010 + Infopath 2010 VSTA + WF + Timer Job + BI 之 报销单实例系列---------创建报销单新增视图...
查看>>
syslog
查看>>
Expert_PL_SQL_Practices-----Do Not Use
查看>>
CSS 清除浮动的4种方法
查看>>
Zabbix告警脚本-邮件
查看>>
基于linux c的mysql操作——幼儿园数据管理系统
查看>>
ACM数学
查看>>