Reputation: 5135
How to open activity from view? I am develop a game if game is over I need to move user to main menu activity.
Upvotes: 1
Views: 1150
Reputation: 5135
Thank you all. i got solution myself.
Activity activity=(Activity)this;
i passed this activity object to my view and then i have done
activity.finish();
Upvotes: 1