i have a android application which needs username and password to login, i need to save the username and password locally in phone or some where to use them when the user opens the app next time and logins to the app automatically without showing the login screen
EditText input1 = (EditText) findViewById(R.id.usertext);
EditText input2 = (EditText) findViewById(R.id.Passtext);
String username = input1.getText().toString();
String password = input2.getText().toString();
if login successful ill call the activity through intent