Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

You should pass an instance of type Context or Activity as first parameter to your Intent, so your this should refer to your parent Activity.

To do that change your declaration of the adapter to

class RecyclerAdapter(
    private val activity: Activity,
    private var titles: List<String>
) : RecyclerView.Adapter<RecyclerAdapter.ViewHolder>() {

and then pass the activity parameter to the Intent:

val intentAct: Intent = Intent(activity, authorization::class.java)
activity.startActivity(intentAct)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 1 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...