【发布时间】:2019-09-17 15:17:11
【问题描述】:
希望您能帮助我解决我的错误。我仍在开发我的登录应用程序,到目前为止,尽管出现了一些小错误,但该应用程序运行良好。现在,用户可以登录、登录和更改他的个人资料信息。在最后的步骤中,我还实现了删除用户信息的功能。同时,删除功能也起作用,以便从 FirebaseAuth 和 FirebaseRealtimeDatabase 中删除用户信息。删除用户信息后出现问题;应用程序崩溃。
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)
个人资料活动:
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);
}
}
【问题讨论】:
-
第 49 行是什么?
-
将
DatabaseReference databaseReference= firebaseDatabase.getReference(firebaseAuth.getUid());替换为DatabaseReference databaseReference= firebaseDatabase.getReference(firebaseAuth.getCurrentUser().getUid());也可以在getUid()上检查null
标签: java android firebase firebase-realtime-database firebase-authentication