다음 코드의 요약 유효성 검사를 수행하는 방법? 내가 로그인 버튼을 클릭하면
if((noValidate.getText().toString().length()>0) && (nameValidate.getText().toString().length()>0) &&
(conpassValidate.getText().toString() == passValidate.getText().toString()) && (email.matches(emailPattern))
&&(passValidate.getText().toString().length()>0))
{
Toast.makeText(this, "Your Information are saved succesfully ", Toast.LENGTH_SHORT).show();
Intent getStarted = new Intent(getApplicationContext(), FourthActivity.class);
startActivity(getStarted);
}
else
{
Toast.makeText(this, "Field Requiered",Toast.LENGTH_SHORT).show();
}
}
여기가 확인하고 필드를 summerise 것입니다. 필드가 비어 있으면 해당 필드가 필요함을 표시합니다. 모든 입력란에 데이터를 입력하면 입력란에 항상 입력란이 표시됩니다. 나는 그 문제가 어디 있는지 모른다.
오류 로그를 게시 할 수 있습니까? 오류가 FourthActivity.class에있을 수 있기 때문에 !!! – Nirmal