Skip to content

Instantly share code, notes, and snippets.

@2tanayk
Last active February 5, 2022 14:53
Show Gist options
  • Save 2tanayk/a8ac5d33c98992fe120fc98b6332b727 to your computer and use it in GitHub Desktop.
Save 2tanayk/a8ac5d33c98992fe120fc98b6332b727 to your computer and use it in GitHub Desktop.
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.e("Activity context is", String.valueOf(this));
Button button = findViewById(R.id.btn);
button.setOnClickListener(view -> {
Log.e("View context is", String.valueOf(view.getContext()));
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment