I tried with passing context of activity into the adapter and then i tried context.finish(); But its giving me one error like The method finish() is undefined for the type Context
context
context.finish();
The method finish() is undefined for the type Context
type cast it with activity.
((Activity)context).finish();
2.1m questions
2.1m answers
60 comments
57.0k users