how to call intent in adapter class in android
Intent intent = new Intent(activity, CategoryListActivity.class);
// intent.putExtra(RequestParamUtils.FEATURE, true);
activity.startActivity(intent);
how to call intent in adapter class in android
Intent intent = new Intent(activity, CategoryListActivity.class);
// intent.putExtra(RequestParamUtils.FEATURE, true);
activity.startActivity(intent);
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);
}
});
call activity method from adapter
if (mContext instanceof YourActivityName) {
((YourActivityName)mContext).yourDesiredMethod();
}
start an activity in adapter
override fun onClick(v: View?) {
val intent = Intent(v.context, TimerActivity::class.java)
v.context.startActivity(intent)
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us