我目前有以下内容:
Intent intent = new Intent(Intent.ACTION_VIEW, android.provider.MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
startActivity(intent);
它在大多数情况下都能完美运行,但至少对于 Android 2.3.4 设备会产生以下异常:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=content://media/external/video/media }
任何人都可以分享在 Android 设备上打开图库的通用方法吗?