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