Skip to content

Instantly share code, notes, and snippets.

@okanaydin
Last active December 12, 2020 16:01
Show Gist options
  • Save okanaydin/ed951e23cbcd0f1573805f132ffa3eee to your computer and use it in GitHub Desktop.
Save okanaydin/ed951e23cbcd0f1573805f132ffa3eee to your computer and use it in GitHub Desktop.
findViewById Sample
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val mTextView: TextView = findViewById(R.id.textView)
mTextView.text = "Hello findViewById!"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment