搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
AllinToyou
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
一般树的遍历(算法笔记)_一般树的后序遍历
2
Dell R720服务器错误代码_the power input for power supply 1 is lost.
3
Ubuntu18.04 dpkg: 处理软件包 mysql-server-5.7 (--configure)时出错:子进程 已安装 post-installation 脚本 返回错误状态 1_dpkg: 处理软件包 ufw (--configure)时出错: 已安装 ufw 软件包 post
4
[MySQL]数据库原理4,预备实操,RDBMS,Stored Procedure,Structured Query Language,—喵喵期末不挂科
5
上班用Python采集热搜榜,堪称摸鱼神器_热词爬虫
6
springboot内置tomcat的basedir存放位置在哪_idea启动springboot工程,tomcat默认basedir路径
7
【Unity编辑器扩展】扩展Unity工具栏Toolbar, 一键出包/打热更简化打包流程_unity editor 自定义拓展工具
8
python qt5教程_Python QT5 简洁入门
9
用于特征提取的 LiDAR 数据_雷达航迹数据特征提取
10
吴恩达-面向开发人员的 ChatGPT 提示工程_面向开发的chatgpt提示工程
当前位置:
article
> 正文
Android中通过Intent 调用图片、视频、音频、录音、拍照_android中获取相册视频没有后缀new intent(intent.action_get_con
作者:AllinToyou | 2024-03-01 16:10:16
赞
踩
android中获取相册视频没有后缀new intent(intent.action_get_content);
//选择图片 requestCode 返回的标识
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); //"android.intent.action.GET_CONTENT"
intent.setType(contentType); //查看类型 String IMAGE_UNSPECIFIED = "image/*";
Intent wrapperIntent = Intent.createChooser(intent, null);
((Activity) context).startActivityForResult(wrapperIntent, requestCode);
//添加音频
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(contentType); //String VIDEO_UNSPECIFIED = "video/*";
Intent wrapperIntent = Intent.createChooser(intent, null);
((Activity) context).startActivityForResult(wrapperIntent, 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);
//视频
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(contentType); //String VIDEO_UNSPECIFIED = "video/*";
Intent wrapperIntent = Intent.createChooser(intent, 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);
//拍照 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);
//跳转网页
Intent i=new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com/")) ;
startActivity(i);
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/AllinToyou/article/detail/175231
推荐阅读
article
linux
中
systemctl
详细理解及
常用命令
_
bind
action
run
linux
sys...
一、
systemctl
理解Linux 服务管理两种方式service和
systemctl
systemd是Linux系统最...
赞
踩
article
Android
1
5
即
将
到来,或
将
推出
5
大新
功能
特性_
android
1
5
...
谷歌曾在早期的安卓14测试版中预告这个
功能
,但在后续的测试版中却不见了,而稳定版本也没有包含这个
功能
。据新出现的互联网统...
赞
踩
article
android
+
mmi
是
病毒
?
,
恶意软件
分析 &
URL
链接扫描 免费在线
病毒
分析平台 | 魔盾安全...
AndroidManifest.xml~GQTUUUMETA-INF/CERT.RSA3hb)53+3/{jhP0#CM...
赞
踩
article
Android
客户端
起HttpServer
NanoHttpd
_yyauu8ioooiopppuu...
最近接到客户那边需求,说需要实现一个java后端请求android
客户端
,android
客户端
作为微型Web服务端,听起...
赞
踩
article
Android
VLC
播放器二次开发2——
CPU
类型检查+界面
初始化
_
ovv
.
cyp
...
上一篇讲了
VLC
整个程序的模块划分和界面主要使用的技术,今天分析一下
VLC
程序
初始化
过程,主要是
初始化
界面、加载解码库的...
赞
踩
article
android
tv r69,
China
Full
Hd
Android
Tv
Box
,
Full
...
Sourcing Guide for
Full
Hd
Android
Tv
Box
:Our electronics su...
赞
踩
article
SSM +
Vue
+
Django
+
Android
(基础篇)_
pycharm
能用ssm
框架
吗...
寄语:反复练习是强化理论的最有效方式
Vue
:一套用于构建用户界面的渐进式
框架
,作为只关注视图层的web前端三大主流
框架
之...
赞
踩
article
[转]
Android
设计
思想
...
原文地址 http://www.cnmsdn.com/html/201006/1276745370ID6171_17.h...
赞
踩
article
Android
------面试简答题_每位同学编写
一个
android
应用程序
,
至少要涉及到activ...
一。.简单概述SVN与Git的区别?1.GIT是分布式的,SVN不是2.GIT把内容按元数据方式存储,而SVN是按文件3...
赞
踩
article
Android
App
开发
超实用
实例
|
Activity
_简单
的
安卓
app
开发
实例
...
介绍
Activity
内各View间
的
关系,讲解不同
Android
版本设置全屏
的
方法。通过案例了解
Activity
的
生命周...
赞
踩
article
Android
应用
开发
期末复习(四大组件+
Intent
+GUI)_
android
app
开发
期末选择...
Android
期末复习1,水平有限,还请批评指正_
android
app
开发
期末选择
android
app
开发
期末选择 ...
赞
踩
article
Android
设计模式
七大
原则
,
原来还可以这么玩?_
设计模式
七大
原则
android
...
设计模式
七大
原则
1、
设计模式
的目的道亦有道
,
术亦有术
,
在成长这件事上
,
吃经验无疑是速度最快的一种。而
设计模式
则是无数前辈...
赞
踩
article
android
核心_安卓
核心技术
...
AsyncTask是一个抽象类,它是由Android封装的一个轻量级异步类,它可以在线程池中执行后台任务,然后把执行的进...
赞
踩
article
Android
Jetpack
从
使用
到
源码
深耕【
数据库
注解
Room
从实践到原理 】(一)_and...
本文,我们通过一个简单的sqlite应用实例,引入了
Room
,知道了
Room
使用
的便捷和好处。然后用
Room
的方式,重新...
赞
踩
article
GitHub
优秀
的
Android
开源
项目_墙辉 亚信...
GitHub
优秀
的
Android
开源
项目2015-12-10 13:37 1164人阅读 评论(0)收藏举报分类:...
赞
踩
article
Android
逆向
调用
so
(一)_
android
逆向
so
...
今天读一篇论文中提到“盗版应用可在未读取SO库实现源码的情况下,对其中的方法进行调用”,既然这样今天就小小的实现一发,不...
赞
踩
article
Android
JNI
学习——
JNI
的
常用
方法
的
中文
API
_
android
jni
打印堆栈...
转发自:https://www.jianshu.com/p/67081d9b0a9c思维导图如下:image.png本文...
赞
踩
article
android
jni
编程 三_
jni
callstaticobjectmethodv
...
本次主要讲C徽调java方法(静态调用,动态的还不会,源代码是动态)在上一篇的代码基础上修改源代码如下:jstring ...
赞
踩
article
android
O 32位系统报错:
JNI
DETECTED
ERROR IN APPLICATIO...
一、同样的程序我在
android
O 64位系统上跑没有任何问题,但是在32位系统上跑就报这个错误问题原因是:自己写的类...
赞
踩
article
Android
error
: JNI DETECTED ERROR IN APPLICATION_a...
描述:在
Android
5.0以下的版本是正常的,在5.0以上的版本的手机系统上运行应用奔溃的问题
error
:art/r...
赞
踩
相关标签
android
android+mmi是病毒?
java
开发语言
android tv r69
vue.js
django
Android
应用服务器
网络应用
嵌入式
多线程
安卓
数据库
android jetpack
Room
源码原理
github