android.intent.action.GET_CONTENT:
调用系统程序用的,比如一个打开一个文件的时候会提示你用哪个软件打开,setType()就是设置默认用哪种格式打开,比如"video/*","audio/amr"
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); /* 取得相片后返回本画面 */ startActivityForResult(intent, 1);
或
Intent intent=new Intent("android.intent.action.GET_CONTENT"); intent.setType("video/*");
时间: 2024-10-12 13:44:06