我有一个包含四个编辑文本的主屏幕。在每个编辑文本中,我只接受单个数字值。我在每个编辑文本上设置 requestFocus()。一旦我在第四个编辑文本中输入值,它应该调用构造函数,触发查询并返回我登录是否成功。相反,它给我的消息是“登录失败”
这是我的代码
edit4.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View arg0, int arg1, KeyEvent arg2)
{
// TODO Auto-generated method stub
if(edit4.getText().toString().length()==1)
{
ParentDBHelper helper = new ParentDBHelper(getApplicationContext(), "db_parents", null, 2);
SQLiteDatabase db=helper.getWritableDatabase();
Cursor c=db.rawQuery("SELECT * FROM tbl_countries", null);
// check if the table is empty
if (!c.moveToNext())
{
Toast.makeText(getApplicationContext(), "No data to display, please make sure you have already inserted data!", Toast.LENGTH_LONG).show();
db.close();
return false;
}
c.moveToPrevious();
// if the table is not empty, read the result into a string named display
while(c.moveToNext())
{
String
String no1=c.getColumnName(5);
if(no1==edit1.getText().toString()+edit2.getText().toString()+edit3.getText().toString()+edit4.getText().toString())
{
flag_status_pin=1;
Toast.makeText(getApplicationContext(), "Login Successful!!", Toast.LENGTH_LONG).show();
Intent dash1=new Intent(getApplicationContext(),DashBoard.class);
startActivity(dash1);
}
}
if(flag_status_pin==0)
{
Toast.makeText(getApplicationContext(), "Login Failed!!", Toast.LENGTH_LONG).show();
Intent homes=new Intent(getApplicationContext(),home.class);
startActivity(homes);
}
}//if
return false;
}});
谢谢。