Reputation: 67
Hope you can help me with my error. I am still working on my login-App, and till now the App runs fine despite some small errors. By now the user can sign in, login and change his profile information. In the last steps, I also implemented a function to delete userinformation. Meanwhile, also the delete function works so that the userinformation gets deleted from FirebaseAuth and the FirebaseRealtimeDatabase. The problem occurs after deleting the userinformation; The App crashes.
Logcat:
09-17 16:56:31.108 19975-19975/com.example.login E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.login, PID: 19975
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.login/com.example.login.ProfileActivity}: java.lang.NullPointerException: Can't pass null for argument 'pathString' in FirebaseDatabase.getReference()
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2464)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2524)
at android.app.ActivityThread.access$900(ActivityThread.java:154)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1391)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:234)
at android.app.ActivityThread.main(ActivityThread.java:5526)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
Caused by: java.lang.NullPointerException: Can't pass null for argument 'pathString' in FirebaseDatabase.getReference()
at com.google.firebase.database.FirebaseDatabase.getReference(com.google.firebase:firebase-database@@19.0.0:164)
at com.example.login.ProfileActivity.onCreate(ProfileActivity.java:49)
at android.app.Activity.performCreate(Activity.java:6285)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1108)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2417)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2524)
at android.app.ActivityThread.access$900(ActivityThread.java:154)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1391)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:234)
at android.app.ActivityThread.main(ActivityThread.java:5526)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
ProfileActivity:
public class ProfileActivity extends AppCompatActivity {
private TextView profilVorname,profilNachname,profilStrasse,profilHNr,profilPlz,profilStadt,profilLand;
private Button profilUpdate,PasswortUpdate;
private FirebaseAuth firebaseAuth;
private FirebaseDatabase firebaseDatabase;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_profile);
profilVorname= findViewById(R.id.textViewPVorname);
profilNachname=findViewById(R.id.textViewPNachname);
profilUpdate=findViewById(R.id.buttonProfilUpdate);
profilStrasse=findViewById(R.id.textViewPStrasse);
profilHNr=findViewById(R.id.textViewPHNr);
profilPlz=findViewById(R.id.textViewPPlz);
profilStadt=findViewById(R.id.textViewPStadt);
profilLand=findViewById(R.id.textViewPLand);
PasswortUpdate=findViewById(R.id.buttonPasswordUpdate);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowTitleEnabled(false);
firebaseAuth=FirebaseAuth.getInstance();
firebaseDatabase= FirebaseDatabase.getInstance();
DatabaseReference databaseReference= firebaseDatabase.getReference(firebaseAuth.getUid());
databaseReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
UserProfil userProfil=dataSnapshot.getValue(UserProfil.class);
profilVorname.setText(userProfil.getVorname());
profilNachname.setText(userProfil.getNachname());
profilStrasse.setText(userProfil.getStrasse());
profilHNr.setText(userProfil.getHnr());
profilPlz.setText(userProfil.getPlz());
profilStadt.setText(userProfil.getStadt());
profilLand.setText(userProfil.getLand());
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
Toast.makeText(ProfileActivity.this,"Database Error",Toast.LENGTH_SHORT).show();
}
});
profilUpdate.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View view){
startActivity(new Intent(ProfileActivity.this,UpdateProfilActivity.class));
}
});
PasswortUpdate.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
startActivity(new Intent(ProfileActivity.this,UpdatePasswortActivity.class));
}
});
}
@Override
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
switch(item.getItemId()){
case android.R.id.home:
onBackPressed();
}
return super.onOptionsItemSelected(item);
}
@Override
public void onBackPressed() {
super.onBackPressed();
startActivity(new Intent(ProfileActivity.this, NavActivity.class));
}
UpdateProfilActivity:
public class UpdateProfilActivity extends AppCompatActivity {
private EditText newUserVorname, newUserNachname,newUserStrasse,newUserHnr,newUserPlz,newUserStadt,newUserLand;
private Button speichern;
private FirebaseAuth firebaseAuth;
private FirebaseDatabase firebaseDatabase;
private TextView loeschen;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_update_profil);
newUserVorname=findViewById(R.id.editTextVornameUpdate);
newUserNachname=findViewById(R.id.editTextNachnameUpdate);
newUserStrasse=findViewById(R.id.editTextStrasse);
newUserHnr=findViewById(R.id.editTextHNr);
newUserPlz=findViewById(R.id.editTextPlz);
newUserStadt=findViewById(R.id.editTextStadt);
newUserLand=findViewById(R.id.editTextLand);
speichern=findViewById(R.id.buttonSpeichern);
loeschen=findViewById(R.id.textViewLoeschen);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowTitleEnabled(false);
firebaseAuth= FirebaseAuth.getInstance();
firebaseDatabase= FirebaseDatabase.getInstance();
final DatabaseReference databaseReference= firebaseDatabase.getReference(firebaseAuth.getUid());
databaseReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
UserProfil userProfil=dataSnapshot.getValue(UserProfil.class);
newUserVorname.setText(userProfil.getVorname());
newUserNachname.setText(userProfil.getNachname());
newUserStrasse.setText(userProfil.getStrasse());
newUserHnr.setText(userProfil.getHnr());
newUserPlz.setText(userProfil.getPlz());
newUserStadt.setText(userProfil.getStadt());
newUserLand.setText(userProfil.getLand());
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
Toast.makeText(UpdateProfilActivity.this,"Database Error",Toast.LENGTH_SHORT).show();
}
});
speichern.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View view){
String Vorname = newUserVorname.getText().toString();
String Nachname = newUserNachname.getText().toString();
String Strasse = newUserStrasse.getText().toString();
String HNr = newUserHnr.getText().toString();
String Plz = newUserPlz.getText().toString();
String Stadt = newUserStadt.getText().toString();
String Land = newUserLand.getText().toString();
UserProfil userProfil=new UserProfil(Vorname,Nachname,Strasse,HNr,Plz,Stadt,Land);
databaseReference.setValue(userProfil);
finish();
}
});
loeschen.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
FirebaseUser user= FirebaseAuth.getInstance().getCurrentUser();
String uid=firebaseAuth.getCurrentUser().getUid();
DatabaseReference databaseReference =firebaseDatabase.getReference(uid);
databaseReference.removeValue();
user.delete().addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if(task.isSuccessful()){
firebaseAuth.signOut();
startActivity(new Intent(UpdateProfilActivity.this, MainActivity.class));
finish();
}
}
});
}
});
}
@Override
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
switch(item.getItemId()){
case android.R.id.home:
onBackPressed();
}
return super.onOptionsItemSelected(item);
}
}
Upvotes: 1
Views: 70
Reputation: 598668
The core of the error message is this:
So it seems you're calling getReference(null)
, which is not allowed.
In the code you shared, there are two calls to getReference()
:
DatabaseReference databaseReference= firebaseDatabase.getReference(firebaseAuth.getUid());
And:
String uid=firebaseAuth.getCurrentUser().getUid();
DatabaseReference databaseReference =firebaseDatabase.getReference(uid);
In one of these cases, the value you're passing into getReference(...)
is null
. I can't really figure out which one that is from the information you provided, and I am in fact surprised that the first one compiles, since the FirebaseAuth
class does not seem to have a getUid()
method.
Upvotes: 1
Reputation: 82
at com.example.login.ProfileActivity.onCreate(ProfileActivity.java:49) look at ProfileActivity in the line 49 and debug the value to see if it's null
Upvotes: 0