Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Last active January 28, 2022 04:47
Embed
What would you like to do?
Kotlin Intro #7-2
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val textView: TextView = findViewById(R.id.textView)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment