androidandroid-activitylistadapter

How to finish an activity from an Adapter..?


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


Solution

  • type cast it with activity.

    ((Activity)context).finish();