I have created an Activity with a AutuCompleteTextView[ACTV] and button. I enter some text in the ACTV then press the button.
After I press the button I want the Activity to go to another Activity. In the second Activity I just want to display the text entered in ACTV(of the first actvity) as a TextView.
I know how to start the second activity which is as below:
Intent i = new Intent(this, ActivityTwo.class);
startActivity(i);
I have coded this to obtain the text entered from the ACTV.
AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete);
CharSequence getrec=textView.getText();
My question here is how to pass "getrec" (after I press the button) from the first Activity to the second. And later recieve "getrec" in the second activity.
Please assume that I have created the event handler class for the button by using "onClick(View v)"
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…