현재 Sqlite를 이용해서 회원가입시 정상적으로 값들이 저장되는건 확인이 되었습니다.
문제는 로그인에서 유효성 검사(입력된 ID, PW가 Sqlite에 저장된 값들과 일치하는지)이여서
검색해보니까. JSON, PHP, XML을 이용해서 하는 방법밖에 없는데 그 외에 유효성검사를 할 수 있는 방법은 없을까요??
다른 로그인, 회원가입 예제들을 봐도 다들 유효성 검사부분은 넘어가셨더라구요ㅠㅠ
public void onClick(View v){
String ID = edtID.getText().toString();
String PW = edtPW.getText().toString();
if (v == btnreg) {
Intent regIntent = new Intent(MainActivity.this, regist.class);
startActivity(regIntent);
}
else if (v== btnlogin){
if(!ID.isEmpty() && !PW.isEmpty()) {
Intent loginIntent = new Intent(MainActivity.this, logmain.class);
startActivity(loginIntent);
}else{
Toast.makeText(getApplicationContext(),"ID, PW를 입력해주세요.",Toast.LENGTH_SHORT).show();
}
}
else if (v== btnTest){
Intent testIntent = new Intent(MainActivity.this,test.class);
startActivity(testIntent);
}
}