博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于设置 存储 内部存储空间只显示图片不显示视频的解决方法
阅读量:5774 次
发布时间:2019-06-18

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

在Settings下的StorageVolumePreferenceCategory.java类下,找到对应项【DCIM】,

加广播 intent = new Intent(Intent.ACTION_VIEW);

         intent.putExtra(Intent.EXTRA_LOCAL_ONLY,true);

       intent.setType("image/*;video/*");

 

然后在Gallery2的AndroidManifest.xml 下的 Gallery Activity下加如下代码:

<intent-filter>

  <action android:name="android.intent.action.VIEW"/>

  <category android:nane="android.intent.category.DEFAULT">

  <data android:mimeType="image/*"/>

  <data android:mimeType="video/*"/>

</intent-filter>

转载于:https://www.cnblogs.com/kulankadamei/archive/2013/05/22/3093208.html

你可能感兴趣的文章
shell变量子串
查看>>
201521123009 《Java程序设计》第8周学习总结
查看>>
iOS的主要框架介绍 (转载)
查看>>
react报错this.setState is not a function
查看>>
poj 1183
查看>>
从根本解决跨域(nginx部署解决方案)
查看>>
javascript实现的一个信息提示的小功能/
查看>>
京东购物车信息提取工具
查看>>
SqlServer和Mysql插入记录前判断是否存在,存在则插入,不存在则修改。
查看>>
ubuntu alsa2
查看>>
[破解] IPhone 5S icloud dns bypass
查看>>
【转】TCP/IP详解学习笔记(一)
查看>>
layer.js:2 Uncaught TypeError: Cannot read property 'extend' of undefined
查看>>
Centos7.x:开机启动服务的配置和管理
查看>>
HTML5 浏览器返回按钮/手机返回按钮事件监听
查看>>
使用 HPC Pack 为 Azure 中的 Windows HPC 工作负荷创建和管理群集的选项
查看>>
xss
查看>>
iOS:百度长语音识别具体的封装:识别、播放、进度刷新
查看>>
JS获取服务器时间并且计算距离当前指定时间差的函数
查看>>
.NET Core 中依赖注入 AutoMapper 小记
查看>>