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


    在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>

  • 相关阅读:
    [HNOI2008] Cards
    loj #136
    a problem
    dp * 3
    STL
    套题1
    luogu 4211
    loj #2319
    loj #2316
    luogu 1144
  • 原文地址:https://www.cnblogs.com/kulankadamei/p/3093208.html
Copyright © 2020-2023  润新知