Skip to content

Instantly share code, notes, and snippets.

@lisamariewatkins
Created January 23, 2021 00:39
Show Gist options
  • Save lisamariewatkins/6a7d23bf8c9805321c9ad6ab3a3e9ebe to your computer and use it in GitHub Desktop.
Save lisamariewatkins/6a7d23bf8c9805321c9ad6ab3a3e9ebe to your computer and use it in GitHub Desktop.
Making a click with no architecture.
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
button.setOnClickListener {
text_view.setText("I've clicked a button!")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment