Intent from Fragment to Activity

后端 未结 11 1483
再見小時候
再見小時候 2021-02-03 23:22

I was trying to go to another page using button, but it always fail.

Here is my First Class with its XML:

public class Fin         


        
11条回答
  •  抹茶落季
    2021-02-04 00:08

    For Kotlin you can use

    val myIntent = Intent(activity, your_destination_activity::class.java)
    startActivity(myIntent)
    

提交回复
热议问题