android intent.setType("type");的含义

intent.setType(“image/*”);

//intent.setType(“audio/*”); //选择音频

//intent.setType(“video/*”); //选择视频 (mp4 3gp 是android支持的视频格式)

//intent.setType(“video/;image/”);//同时选择视频和图片
例如,我要实现获取手机相册功能可用如下代码:

public void gallery(View view) {

//button属性为android:onClick="gallery",点击事件
        Intent intent = new Intent(Intent.ACTION_PICK);//intent  action属性
        intent.setType("image/*");//选择图片
        startActivityForResult(intent, PHOTO_REQUEST_GALLERY);
    }

你可能感兴趣的:(android)