Examples of Contex in Android (use context to open an activity in a common class)

Source: Internet
Author: User

Premise: A inherits activity,b a common class, and the constructor is like this

Private Context CTX;

Public Purchase (Context c) {

TODO auto-generated Constructor stub
This.ctx = C;

}

C A class that inherits activity.

Now in A, b b= new B (A.this), then B gets a context object. The constructor for B is as follows:

Public Purchase (Context c) {

TODO auto-generated Constructor stub
This.ctx = C;

Intent Intent = new intent ();
Intent.setclass (CTX, C. Class);
Ctx.startactivity (Intent);

}

This allows you to display the C page. And can be in the Class B, to get some resources, such as ctx.getassets (). Open ("Xxx.xml"); Gets an XML file in the project.

Examples of Contex in Android (use context to open an activity in a common class)

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.