我正在研究android项目。我的要求是将图像从android库存储到远程mysql数据库。我可以通过在代码中提供图像名称将图像存储到数据库中。但我想将所选图像存储到数据库,而不提及代码中图像的名称。我怎样才能做到这一点? 请帮帮我......
答案 0 :(得分:1)
按starting Activity for result:
调用图库Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, IMAGE_PICK);
更详细地描述:Get/pick an image from Android's built-in Gallery app programmatically