Answers for "how to call activity from adapter class in android"

0

how to call intent in adapter class in android

Intent intent = new Intent(activity, CategoryListActivity.class);
           // intent.putExtra(RequestParamUtils.FEATURE, true);
            activity.startActivity(intent);
Posted by: Guest on November-09-2020
0

startactivity not working in android adapter

holder.fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(series.getApplicationContext(),VideoActivity.class);
                String url = response.get(position).getUrl();
                Bundle bundle = new Bundle();
                bundle.putString("key_1",url);
                intent.putExtras(bundle);
                mContext.startActivity(intent);
            }
        });
Posted by: Guest on July-22-2020
-1

call activity method from adapter

if (mContext instanceof YourActivityName) {
  ((YourActivityName)mContext).yourDesiredMethod();
}
Posted by: Guest on December-16-2020
-1

start an activity in adapter

override fun onClick(v: View?) {
	val intent = Intent(v.context, TimerActivity::class.java)

	v.context.startActivity(intent)
}
Posted by: Guest on April-21-2020

Code answers related to "how to call activity from adapter class in android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language