Skip to content

Instantly share code, notes, and snippets.

@telday
Last active September 20, 2018 23:07
Show Gist options
  • Save telday/7b6f9d2301b4c45a92ec37e5886e8cd8 to your computer and use it in GitHub Desktop.
Save telday/7b6f9d2301b4c45a92ec37e5886e8cd8 to your computer and use it in GitHub Desktop.
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final TextView text = (TextView)findViewById(R.id.helloText);
final Button button = (Button)findViewById(R.id.helloButton);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
text.setText("Hello World!");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment