关于设置 存储 内部存储空间只显示图片不显示视频的解决方法

在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/p/3093208.html