0

我已經做了與火力地堡用戶登錄的項目。 當我點擊註冊按鈕的數據不存儲在Firebase「認證用戶」。不顯示「用戶的電子郵件地址」,數據不存儲在數據庫火力地堡

這是ProfileActivity.java代碼

import android.content.Intent; 
import android.support.annotation.NonNull; 
import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
import android.util.Log; 
import android.view.View; 
import android.widget.Button; 
import android.widget.TextView; 
import com.google.firebase.auth.FirebaseAuth; 
import com.google.firebase.auth.FirebaseUser; 

public class ProfileActivity1 extends AppCompatActivity implements View.OnClickListener { 

private TextView textViewEmail; 
private Button buttonLogout1; 

private FirebaseAuth mAuth; 

private FirebaseAuth.AuthStateListener mAuthListener; 

private FirebaseUser user; 

private static final String TAG ="FirebaseAuth"; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_profile1); 

    mAuth = FirebaseAuth.getInstance(); 

    mAuthListener = new FirebaseAuth.AuthStateListener() { 


     @Override 
     public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) { 
      FirebaseUser user = firebaseAuth.getCurrentUser(); 
      if (user != null) { 
       // User is signed in 
       Log.d(TAG, "Welcome Your:signed_in:" + user.getEmail()); 
      } else { 
       // User is signed out 
       Log.d(TAG, "onAuthStateChanged:signed_out"); 

           } 

     } 


    }; 

} 


@Override 
public void onClick(View v) { 

    if(v == buttonLogout1) { 
     mAuth.signOut(); 
     Intent intent = new Intent(ProfileActivity1.this, MainActivity.class); 
     startActivity(intent); 
     finish(); 
    } 

} 
} 

這是怎麼回事錯在這裏?

我爲什麼不能保存數據?

請讓我知道。

對不起,格式不正確的問題。我還是個初學者。

+0

在身份驗證部分註冊用戶,您仍然可以獲取已簽名的用戶數據,如姓名或照片網址。 –

+0

@AgiMaulana我是個初學者** **到火力地堡,也到Android Studio中,請詳細說明 – Kavin

回答

0

offical documentation,你會發現所有你需要實現一個火力地堡認證。它是一步一步解釋整個過程的。按照在這裏解釋的確切方式執行這些步驟,您將完成該操作。

對於一個具體的例子,你可以使用this tutorial

+0

我已經火力認證的官方文件的基礎上進行的,但它不工作。我不能理解錯誤,如果你發現任何錯誤或錯誤告訴我請 – Kavin

0

哪裏是你的createUserWithEmailAndPassword方法?它在代碼中缺失。您需要通過將新用戶的電子郵件地址和密碼傳遞給createUserWithEmailAndPassword來創建一個新帳戶。

mAuth.createUserWithEmailAndPassword(email, password) 
      .addOnCompleteListener(this, new  OnCompleteListener<AuthResult>() { 
     @Override 
     public void onComplete(@NonNull Task<AuthResult> task) { 
      Log.d(TAG, "createUserWithEmail:onComplete:" + task.isSuccessful()); 

      // If sign in fails, display a message to the user. If sign in succeeds 
      // the auth state listener will be notified and logic to handle the 
      // signed in user can be handled in the listener. 
      if (!task.isSuccessful()) { 
       Toast.makeText(EmailPasswordActivity.this, R.string.auth_failed, 
         Toast.LENGTH_SHORT).show(); 
      } 

      // ... 
     } 
    });