Android——ACTION_GET_CONTENT和ACTION_PICK

来源:互联网 发布:淘宝0秒付款怎么做到的 编辑:程序博客网 时间:2024/06/06 07:22

通过两种方式获取手机图片

//方式一:通过隐式意图,设置Action为ACTION_GET_CONTENT,需要指定类型setType。Intent intent = new Intent();        intent.setAction(Intent.ACTION_GET_CONTENT);        intent.setType("image/*");        activity.startActivityForResult(intent, 10);
//方式二:设置Action为ACTION_PICK,要指定dataIntent intent = new Intent();        intent.setAction(Intent.ACTION_PICK);        intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI);        activity.startActivityForResult(intent, 11);
0 0
原创粉丝点击