Passing data between activity-get data returned by activity

Source: Internet
Author: User

When getting the return value, pay attention to the way you open the activity, using the method:Startactivityforresult

When receiving, override method:Onactivityresult
In the child activity, write the data using the method:Setresult

Mainactivity Code:

 PrivateTextView TV; @Overrideprotected voidonCreate (Bundle savedinstancestate) {Super. OnCreate (savedinstancestate); Setcontentview (R.layout.activity_main); Findviewbyid (R.id.btnstart). Setonclicklistener (NewView.onclicklistener () {@Override Public voidOnClick (view view) {Intent I=NewIntent (mainactivity. This, Othereactivity.class); Startactivityforresult (i,0);//start the receive in this way, the second one is the request code    }}); } @Overrideprotected voidOnactivityresult (intRequestcode,intResultCode, Intent data) {        Super. Onactivityresult (Requestcode, ResultCode, data); TV=(TextView) Findviewbyid (R.id.textview); Tv.settext ("The other activity returned is:" +data.getstringextra ("Data")); }

Otheractivity Code:
PrivateEditText EditText; @Overrideprotected voidonCreate (Bundle savedinstancestate) {Super. OnCreate (savedinstancestate);       Setcontentview (R.layout.activity_othere); EditText=(EditText) Findviewbyid (R.id.edittext); Findviewbyid (R.id.btnback). Setonclicklistener (NewView.onclicklistener () {@Override Public voidOnClick (view view) {Intent Intent=NewIntent (); Intent.putextra ("Data", Edittext.gettext (). toString ()); Setresult (1,intent);//Write return valueFinish ();//End Current Activity            }        }); }

Passing data between activity-get data returned by activity

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.