One activity calls the non-static method of another activity

Source: Internet
Author: User

NOTE: If interface 2 has been opened but not closed, you can use this method to call interface 2 in interface 1!


Interface 1:

Public class oneactivity extends activity {

@ Override
Public void oncreate (bundle savedinstancestate ){
Super. oncreate (savedinstancestate );
Setcontentview (R. layout. activity_one );

Calltwoactivitymethod ();

}


// Call another interface

Private void calltwoactivitymethod (){

If (twoactivity. getobj ()! = NULL ){

Twoactivity. getobj (). Refresh ();

}

}

}


Interface 2:

Public class twoactivity extends activity {

Private Static twoactivity mtwoactivity;

@ Override
Public void oncreate (bundle savedinstancestate ){
Super. oncreate (savedinstancestate );
Setcontentview (R. layout. activity_two );

Mtwoactivity = this;

}


Public static twoactivity getobj (){

Return mtwoactivity;

}

// Method to be called

Public void refresh (){

//............

Log. I ("refresh", "interface 2 method called ");

}

}


This article is from the "LongYuan" blog, please be sure to keep this source http://zhangshenglong.blog.51cto.com/6624985/1434013

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.