Created
June 1, 2019 16:14
-
-
Save jobinjj/7c2a32c41ebea8648a1a3b0cdc546b39 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
btn_load.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View view) { | |
SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE); | |
String name = sharedPreferences.getString("name","default_value"); | |
String email = sharedPreferences.getString("email","default_value"); | |
txt_name.setText(name); | |
txt_email.setText(email); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment