Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.8k views
in Technique[技术] by (71.8m points)

android - How to initialize Intent in string 41?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

+1 vote
by (71.8m points)

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...