Skip to content

Instantly share code, notes, and snippets.

@pavan5208
Created February 28, 2021 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavan5208/e4405e144eb1df31dce66826e5b21ce9 to your computer and use it in GitHub Desktop.
Save pavan5208/e4405e144eb1df31dce66826e5b21ce9 to your computer and use it in GitHub Desktop.
package com.example
import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main.*
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// val textEmail: TextView = findViewById(R.id.txt_email)
// textEmail.text = "someone@gmail.com"
textEmail.text = "someone@gmail.com"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment