Android tips: How to get an Activity object in view

Source: Internet
Author: User
Tags constructor

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/

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.