Skip to content

Instantly share code, notes, and snippets.

@Temidtech
Created June 28, 2019 13:42
Show Gist options
  • Save Temidtech/ab3c56fb81283ac182e216ddb9864bc2 to your computer and use it in GitHub Desktop.
Save Temidtech/ab3c56fb81283ac182e216ddb9864bc2 to your computer and use it in GitHub Desktop.
import kotlinx.android.synthetic.main.content_main.*
 
 class LoginActivity : AppCompatActivity() {
 
 override fun onCreate(savedInstanceState: Bundle?) {
 
 super.onCreate(savedInstanceState)
 
 setContentView(R.layout.activity_main)
 
 // No need to call findViewById(R.id.textView) as TextView
 
 userName.text = "temidayo"
 
 }
 
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment