我在Android应用程序中使用Firebase。在我的注册方法中,我使用的是'createUserWithEmailAndPassword()'方法。要检查我的注册过程是否成功,我在使用'isSuccessful'方法。
firebaseAuth.createUserWithEmailAndPassword(m,p).addOnCompleteListener(new
OnCompleteListener<AuthResult>()
{
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if(task.isSuccessful())
{
//some message
}
else
{
//some other message
}
};
但是每次尝试注册时,都会显示该消息未成功。然后我使用“isComplete()”代替“isSuccessful”,然后工作正常。我还检查了Firebase仪表板以确保该标志是否成功向上的过程工作正常,确实如此。
现在,我想知道这两种方法之间是否有主要区别,如果我使用“isComplete()”是否还会有其他问题,因为我检查了使用“isSuccessful()”的其他教程。
还有一件事,因为相同的代码“isComplete()”返回true并创建用户,但“isSuccessful()”却没有。
完整的代码:
public class RegisterActivity extends AppCompatActivity {
private EditText mail,pass,cPass;
private FirebaseAuth firebaseAuth;
private ImageButton reg;
private TextView warn;
private String a,b,c;
private ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
mail=(EditText) findViewById(R.id.email);
pass=(EditText) findViewById(R.id.pass);
cPass=(EditText) findViewById(R.id.Cpass);
reg=(ImageButton) findViewById(R.id.reg);
firebaseAuth=FirebaseAuth.getInstance();
progressDialog=new ProgressDialog(this);
warn=(TextView) findViewById(R.id.warnTv);
warn.setText("");
reg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
a=mail.getText().toString().trim();
b=pass.getText().toString().trim();
c=cPass.getText().toString().trim();
if(a.isEmpty() || b.isEmpty() || c.isEmpty())
{
Toast.makeText(getApplicationContext(),"all the fields are mandatory",Toast.LENGTH_SHORT).show();
}
else
{
if(LoginActivity.validate(a))
{
if(b.equals(c))
{
progressDialog.setMessage("Wait a sec");
progressDialog.show();
firebaseAuth.createUserWithEmailAndPassword(a,b).addOnCompleteListener(new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if(task.isSuccessful())
{
progressDialog.dismiss();
Toast.makeText(getApplicationContext(),"Registration successful",Toast.LENGTH_SHORT).show();
startActivity(new Intent(RegisterActivity.this,LoginActivity.class));
finish();
}
else
{
progressDialog.dismiss();
Toast.makeText(getApplicationContext(),"Something went wrong",Toast.LENGTH_SHORT).show();
}
}
});
}
else {
warn.setText("Passwords in both the field must be same");
}
}
else
{
warn.setText("Enter a valid emailId");
}
}
}
});
请帮助我提供答案。在此先感谢。
最佳答案
当任务代表的工作完成时,无论任务是成功还是失败,任务都是“完成的”。可能有也可能没有错误,您必须检查一下。
当任务所代表的工作按预期完成时,没有任何错误,则任务“成功”。