chapter image by camera to store on firebase storage get error (java.lang.IllegalArgumentException: uri...
While i try to chapter image by camera to store on firebase storage app crashed after taking picther by camera and get error (java.lang.IllegalArgumentException: uri cannot be null) at code line filePath.putFile(uri) why i got uri always null
public class cam extends AppCompatActivity{
private static final String TAG = "CapturePicture";
private static final int CAMERA_REQUEST_CODE = 1;
private ImageView mImageView;
private Button mUploadBtn;
private StorageReference mStorage;
private FirebaseAuth mAuth;
private String user_id;
private ProgressDialog loadingBar;
private Uri uri;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cam);
if (ContextCompat.checkSelfPermission(cam.this, Manifest.permission.CAMERA)
== PackageManager.PERMISSION_DENIED){
ActivityCompat.requestPermissions(cam.this,new String{Manifest.permission.CAMERA},CAMERA_REQUEST_CODE);}
mUploadBtn = findViewById(R.id.capture);
mImageView = findViewById(R.id.picture);
mStorage = FirebaseStorage.getInstance().getReference();
loadingBar = new ProgressDialog(this);
mAuth = FirebaseAuth.getInstance();
user_id = mAuth.getCurrentUser().getUid();
mUploadBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent imageIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(imageIntent,CAMERA_REQUEST_CODE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) {
loadingBar.setMessage("Uploading Image");
loadingBar.show();
if (data != null) {
uri = data.getData();
}
StorageReference filePath = mStorage.child("Verification Images").child(user_id + ".jpg");
filePath.putFile(uri).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Uri downloadUri = taskSnapshot.getDownloadUrl();
Picasso.with(cam.this).load(downloadUri).fit().centerCrop().into(mImageView);
loadingBar.dismiss();
Toast.makeText(cam.this, "Upload Finished", Toast.LENGTH_SHORT).show();
}
});
}
}
java android
add a comment |
While i try to chapter image by camera to store on firebase storage app crashed after taking picther by camera and get error (java.lang.IllegalArgumentException: uri cannot be null) at code line filePath.putFile(uri) why i got uri always null
public class cam extends AppCompatActivity{
private static final String TAG = "CapturePicture";
private static final int CAMERA_REQUEST_CODE = 1;
private ImageView mImageView;
private Button mUploadBtn;
private StorageReference mStorage;
private FirebaseAuth mAuth;
private String user_id;
private ProgressDialog loadingBar;
private Uri uri;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cam);
if (ContextCompat.checkSelfPermission(cam.this, Manifest.permission.CAMERA)
== PackageManager.PERMISSION_DENIED){
ActivityCompat.requestPermissions(cam.this,new String{Manifest.permission.CAMERA},CAMERA_REQUEST_CODE);}
mUploadBtn = findViewById(R.id.capture);
mImageView = findViewById(R.id.picture);
mStorage = FirebaseStorage.getInstance().getReference();
loadingBar = new ProgressDialog(this);
mAuth = FirebaseAuth.getInstance();
user_id = mAuth.getCurrentUser().getUid();
mUploadBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent imageIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(imageIntent,CAMERA_REQUEST_CODE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) {
loadingBar.setMessage("Uploading Image");
loadingBar.show();
if (data != null) {
uri = data.getData();
}
StorageReference filePath = mStorage.child("Verification Images").child(user_id + ".jpg");
filePath.putFile(uri).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Uri downloadUri = taskSnapshot.getDownloadUrl();
Picasso.with(cam.this).load(downloadUri).fit().centerCrop().into(mImageView);
loadingBar.dismiss();
Toast.makeText(cam.this, "Upload Finished", Toast.LENGTH_SHORT).show();
}
});
}
}
java android
Youruri
is null because it didn't get initialized. It didn't get initialized because your conditiondata != null
wasn't satisfied (which meansdata
was null). Try printing explicitely the value of data. If it's null, you have another problem
– Arthur Attout
Jan 2 at 21:30
add a comment |
While i try to chapter image by camera to store on firebase storage app crashed after taking picther by camera and get error (java.lang.IllegalArgumentException: uri cannot be null) at code line filePath.putFile(uri) why i got uri always null
public class cam extends AppCompatActivity{
private static final String TAG = "CapturePicture";
private static final int CAMERA_REQUEST_CODE = 1;
private ImageView mImageView;
private Button mUploadBtn;
private StorageReference mStorage;
private FirebaseAuth mAuth;
private String user_id;
private ProgressDialog loadingBar;
private Uri uri;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cam);
if (ContextCompat.checkSelfPermission(cam.this, Manifest.permission.CAMERA)
== PackageManager.PERMISSION_DENIED){
ActivityCompat.requestPermissions(cam.this,new String{Manifest.permission.CAMERA},CAMERA_REQUEST_CODE);}
mUploadBtn = findViewById(R.id.capture);
mImageView = findViewById(R.id.picture);
mStorage = FirebaseStorage.getInstance().getReference();
loadingBar = new ProgressDialog(this);
mAuth = FirebaseAuth.getInstance();
user_id = mAuth.getCurrentUser().getUid();
mUploadBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent imageIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(imageIntent,CAMERA_REQUEST_CODE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) {
loadingBar.setMessage("Uploading Image");
loadingBar.show();
if (data != null) {
uri = data.getData();
}
StorageReference filePath = mStorage.child("Verification Images").child(user_id + ".jpg");
filePath.putFile(uri).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Uri downloadUri = taskSnapshot.getDownloadUrl();
Picasso.with(cam.this).load(downloadUri).fit().centerCrop().into(mImageView);
loadingBar.dismiss();
Toast.makeText(cam.this, "Upload Finished", Toast.LENGTH_SHORT).show();
}
});
}
}
java android
While i try to chapter image by camera to store on firebase storage app crashed after taking picther by camera and get error (java.lang.IllegalArgumentException: uri cannot be null) at code line filePath.putFile(uri) why i got uri always null
public class cam extends AppCompatActivity{
private static final String TAG = "CapturePicture";
private static final int CAMERA_REQUEST_CODE = 1;
private ImageView mImageView;
private Button mUploadBtn;
private StorageReference mStorage;
private FirebaseAuth mAuth;
private String user_id;
private ProgressDialog loadingBar;
private Uri uri;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cam);
if (ContextCompat.checkSelfPermission(cam.this, Manifest.permission.CAMERA)
== PackageManager.PERMISSION_DENIED){
ActivityCompat.requestPermissions(cam.this,new String{Manifest.permission.CAMERA},CAMERA_REQUEST_CODE);}
mUploadBtn = findViewById(R.id.capture);
mImageView = findViewById(R.id.picture);
mStorage = FirebaseStorage.getInstance().getReference();
loadingBar = new ProgressDialog(this);
mAuth = FirebaseAuth.getInstance();
user_id = mAuth.getCurrentUser().getUid();
mUploadBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent imageIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(imageIntent,CAMERA_REQUEST_CODE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) {
loadingBar.setMessage("Uploading Image");
loadingBar.show();
if (data != null) {
uri = data.getData();
}
StorageReference filePath = mStorage.child("Verification Images").child(user_id + ".jpg");
filePath.putFile(uri).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Uri downloadUri = taskSnapshot.getDownloadUrl();
Picasso.with(cam.this).load(downloadUri).fit().centerCrop().into(mImageView);
loadingBar.dismiss();
Toast.makeText(cam.this, "Upload Finished", Toast.LENGTH_SHORT).show();
}
});
}
}
java android
java android
asked Jan 2 at 21:06
ahmed fekry konsowaahmed fekry konsowa
117
117
Youruri
is null because it didn't get initialized. It didn't get initialized because your conditiondata != null
wasn't satisfied (which meansdata
was null). Try printing explicitely the value of data. If it's null, you have another problem
– Arthur Attout
Jan 2 at 21:30
add a comment |
Youruri
is null because it didn't get initialized. It didn't get initialized because your conditiondata != null
wasn't satisfied (which meansdata
was null). Try printing explicitely the value of data. If it's null, you have another problem
– Arthur Attout
Jan 2 at 21:30
Your
uri
is null because it didn't get initialized. It didn't get initialized because your condition data != null
wasn't satisfied (which means data
was null). Try printing explicitely the value of data. If it's null, you have another problem– Arthur Attout
Jan 2 at 21:30
Your
uri
is null because it didn't get initialized. It didn't get initialized because your condition data != null
wasn't satisfied (which means data
was null). Try printing explicitely the value of data. If it's null, you have another problem– Arthur Attout
Jan 2 at 21:30
add a comment |
0
active
oldest
votes
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013184%2fchapter-image-by-camera-to-store-on-firebase-storage-get-error-java-lang-illega%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013184%2fchapter-image-by-camera-to-store-on-firebase-storage-get-error-java-lang-illega%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Your
uri
is null because it didn't get initialized. It didn't get initialized because your conditiondata != null
wasn't satisfied (which meansdata
was null). Try printing explicitely the value of data. If it's null, you have another problem– Arthur Attout
Jan 2 at 21:30