系统相册&调用相机,意图,简单写法So easy
程序员文章站
2024-02-10 14:30:52
...
-----------------------------------------------相机意图---------------------------------------------------
// 调用相册意图
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
// 跳转回传--请求码
startActivityForResult(intent, 1);
// 相机返回值
if (requestCode == 0) {
Bitmap bitmap = data.getParcelableExtra("data");
imageView.setImageBitmap(bitmap);
}
--------------------------------------------------相册意图-------------------------------------------------
// 调用相册意图
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
// 跳转回传--请求码
startActivityForResult(intent, 1);
// 相册返回值
if (requestCode == 1) {
Uri uri = data.getData();
imageView.setImageURI(uri);
}
上一篇: php检查字符串中是否有外链的方法
下一篇: vue组件间通信六种方式(总结篇)