Sunday 30 May 2021

Intent in Kotlin Android Studio

 Hi larnkoders in this post you are going to learn  about, How to make pass to new activity with information or simply go to new activity on android studio. This is code is written in Kotlin Programming language.

Let suppose there will be MainActivity.kt and to you want to go to AnotherActivity.kt then\

do this like 

if there is button clicklistener like

button.setOnClickListener{

val intent  = Intent(this,AnotherActivity::class.java)

startActivity(intent)

}

The main code is about simply passing to new activity from MainActivity.kt to AnotherActivity.kt

if there is any issues with above code just comment out, for further support

No comments:

Post a Comment

Intent in Kotlin Android Studio

 Hi larnkoders in this post you are going to learn  about, How to make pass to new activity with information or simply go to new activity on...