Android中的图片上传

时间:2015-09-28 13:44:38

标签: android eclipse android-intent gallery image-uploading

我正在尝试将图片上传到我的应用程序。我正在使用以下几行来实现这一目标。

Intent intent = new Intent(Intent.ACTION_PICK);
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select Picture"),
            PICK_IMAGE);

但是当打开图库时,它会向我显示许多文件夹,例如“最近图像”,“文档”,“Google云端硬盘”等,

这里显示像这样我只想显示库文件夹。能帮我解决一下这个问题吗?

1 个答案:

答案 0 :(得分:1)

试试这个

TeamCity