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

相关文章:

  • 2022-12-23
  • 2021-11-15
  • 2022-12-23
  • 2021-07-25
  • 2021-09-04
  • 2021-09-07
  • 2021-07-03
  • 2022-12-23
猜你喜欢
  • 2022-01-01
  • 2022-12-23
  • 2021-10-11
  • 2022-01-07
  • 2021-07-22
  • 2022-12-23
  • 2021-12-22
相关资源
相似解决方案