如何将选定的图像从android库存储到远程数据库?

时间:2011-08-29 12:58:46

标签: android

我正在研究android项目。我的要求是将图像从android库存储到远程mysql数据库。我可以通过在代码中提供图像名称将图像存储到数据库中。但我想将所选图像存储到数据库,而不提及代码中图像的名称。我怎样才能做到这一点?    请帮帮我......

1 个答案:

答案 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