Skip to content

Instantly share code, notes, and snippets.

@DavidTPate
Last active December 13, 2015 16:39
Show Gist options
  • Save DavidTPate/4942320 to your computer and use it in GitHub Desktop.
Save DavidTPate/4942320 to your computer and use it in GitHub Desktop.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
LoginConfig.init(this);
mSaveUsernameView = (CheckBox) findViewById(R.id.save_username);
mSaveUsernameView.setVisibility(LoginConfig.getShowSaveUsername() ? View.VISIBLE : View.INVISIBLE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment