Tag: 图像上传

如何在android中将多个图像上传到firebase?

我知道这个问题已经在这里被问到并回答了,但由于某些原因,如果解决方案对我不起作用。 所以这就是我试图这样做的方式。 我的布局中有两个按钮,一个用于打开图库,另一个用于上传图像。 定义的成员 int SELECT_PICTURES = 1; ArrayList mArrayUri = new ArrayList(); Uri imageUri; int up = 0; int k =0; 图库按钮代码 Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType(“image/*”); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); startActivityForResult(Intent.createChooser(intent, “Select Picture”), SELECT_PICTURES); 在活动结果代码上 @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if(requestCode == SELECT_PICTURES) { if (resultCode […]