I have a login page (username,password fields) that has a checkbox 'Remember me'. If the checkbox is selected, the application is required to remember the username & password for next login. That is done and working fine. However I am finding it hard to save the state of the checkbox field, i.e. whether it is checked or not. I am saving the username/password through the following code:
if (persistentObject.getContents() == null)
{
persistentHashtable = new Hashtable();
persistentObject.setContents(persistentHashtable);
} else {
persistentHashtable = (Hashtable) persistentObject.getContents();
}
if (persistentHashtable.containsKey("username") && persistentHashtable.containsKey("password"))
{
username.setText((String) persistentHashtable.get("username"));
passwd.setText((String) persistentHashtable.get("password"));
}
If the checkbox is selected and login is successfull, username and password are saved through the following:
if(checkBox1.getChecked() == true)
{
persistentHashtable.put("username", user_id);
persistentHashtable.put("password", password);
}
I tried to save the checkbox state with the line below but that is incorrect.
persistentHashtable.put("checkbox", checkBox1.setChecked(true));
Can somebody please help?
Hey guys I managed to find a solution to my problem. I worked around by checking if the username field is empty, then the checkbox state should be 'unchecked' else it should be 'checked'. This is doing what I wanted. If anyone of you have a better way of doing this please do suggest. My working line of code is as below:
false = unchecked , true = checked