Today I want to realize the function of returning to the last activity in view. Because while the view is contained in an activity, the object that is obtained directly in the view is not an activity but the view, and it is not possible to write the name of the activity directly. So I found this method and attached it!
Let's first assume that the view is defined in activity a. Assuming that the view class is called Gameview, then in a oncreat (), the activity object must be passed to the Gameview constructor.
Gameview=new Gameview (this);
Because there's a constructor in view, you can manipulate the activity in the view as long as the context is passed to the newly defined action
Public Gameview {
super (context);
activity of activity;
Activity= (activity) context;
}
See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/