Step 01: Make A User Interface- Step 01:Write Some Codes Using SharedPreferences for storing android data and load it again public class MainActivity extends AppCompatActivity implements View.OnClickListener { private EditText usernameEditText,passwordEditText; private Button saveButton,loadButton; private TextView dataText; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); usernameEditText= (EditText) findViewById(R.id.userNameID); passwordEditText=(EditText) findViewById(R.id.PasswordID); saveButton= (Button) findViewById(R.id.saveID); loadButton= (Button) findViewById(R.id.loadID); dataText=(TextView)findViewById(R.id.dataID); saveButton.setOnClickListener(this); loadButton.setOnClickListener(this); ...