单击按钮时,会从图库中拍摄照片(addPhoto
方法)。
在onActivityResult方法中,将照片与收到的密钥名称(donosId
变量)一起上传到Firebase Storage。
然后,according to the documentation,以获得图像的URL,我们使用continueWithTask
方法,在其中将结果URL放置在Firebase数据库中。
问题:continueWithTask
方法无法启动(已检查日志+ URL值保持为空)。这是什么错误,或者从URL方法(Uri类型的变量)可以返回什么?
代码:
public void addPhoto(View view) {
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, GALLERY_REQUEST);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 1 && data != null) {
final DatabaseReference newDatabaseReference = FirebaseDatabase.getInstance().getReference("items").push();
donosId = newDatabaseReference.getKey();
final StorageReference imageRef = FirebaseStorage.getInstance().getReference().child("images/" + donosId + ".jpg");
imageRef.putFile(data.getData()).continueWithTask(new Continuation<UploadTask.TaskSnapshot, Task<Uri>>() {
@Override
public Task<Uri> then(@NonNull Task<UploadTask.TaskSnapshot> task) throws Exception {
if (!task.isSuccessful()) {
throw task.getException();
}
// Continue with the task to get the download URL
return imageRef.getDownloadUrl();
}
}).addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
Uri downloadUri = task.getResult();
String var = downloadUri.toString();
Item item = new Item(mNameEditText.getText().toString(),
mSecNameEditText.getText().toString(), var,
(int) System.currentTimeMillis());
newDatabaseReference.setValue(item);
}
}
});
}
}
我不知道为什么该函数未在内部运行并且无法访问downloadURL,但是图像已上传到Firebase Storge。