1、打开系统相册
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("vnd.android.cursor.dir/image");//图片列表
startActivity(intent);
2、打开系统视频
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("vnd.android.cursor.dirideo");//视频列表
startActivity(intent);
所有评论(0)