在Android中上传一张图片或多张图片

时间:2020-04-05 17:17:05

标签: java android

如何更改代码以在应用程序中放置一个选项,使用户可以选择一个选项,以便将几张照片上传到他们的个人资料中? 目前,我正在使用以下代码.......,但是它不允许用户选择单个图像,并且其限制为至少2张照片

那我应该如何更改代码?

Intent intent = new Intent();
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "select images"), CODE_MULTIPLE_IMG_GALLERY);

0 个答案:

没有答案