Skip to content

Instantly share code, notes, and snippets.

View YASH2803's full-sized avatar

Yash Ponam YASH2803

View GitHub Profile
@YASH2803
YASH2803 / onCreate method in MainActivity.java
Created June 24, 2020 20:09 — forked from udacityandroid/onCreate method in MainActivity.java
Use OnClickListeners for All Categories - onCreate method in MainActivity.java
// Find the View that shows the numbers category
TextView numbers = (TextView) findViewById(R.id.numbers);
// Set a click listener on that View
numbers.setOnClickListener(new View.OnClickListener() {
// The code in this method will be executed when the numbers View is clicked on.
@Override
public void onClick(View view) {
Intent numbersIntent = new Intent(MainActivity.this, NumbersActivity.class);
startActivity(numbersIntent);