Java代码
private void chooseVideo() {
Intent intent =new Intent();
/* 开启Pictures画面Type设定为image */
//intent.setType("image/*");
// intent.setType("audio/*"); //选择音频
intent.setType("video/*"); //选择视频 (mp4 3gp 是android支持的视频格式)
// intent.setType("video/*;image/*");//同时选择视频和图片
/* 使用Intent.ACTION_GET_CONTENT这个Action */
intent.setAction(Intent.ACTION_GET_CONTENT);
}