Use bundle to transmit data between activities

Source: Internet
Author: User

Bundle may use the put *** () method to add various types of data. Intent can also add data through putextras (bundle), and then use startactivity () when you jump to the next activity, the data is uploaded to the next activity.

package com.intent;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;public class TestIntentActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        Button button = (Button)this.findViewById(R.id.button);        button.setOnClickListener(new OnClickListener() {public void onClick(View v) {Intent intent = new Intent(TestIntentActivity.this,SecondActivity.class);Bundle bundle = new Bundle();bundle.putString("key_name", "name");bundle.putString("key_age", "age");intent.putExtras(bundle);startActivity(intent);}});    }}

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <Button        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="@string/intent"        android:id="@+id/button" /></LinearLayout>

package com.intent;import android.app.Activity;import android.os.Bundle;import android.widget.TextView;public class SecondActivity extends Activity{@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.second);TextView tv1 = (TextView)this.findViewById(R.id.tv1);TextView tv2 = (TextView)this.findViewById(R.id.tv2);Bundle bundle = this.getIntent().getExtras();tv1.setText(bundle.getString("key_name"));tv2.setText(bundle.getString("key_age"));}}

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <TextView android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:id="@+id/tv1"/><TextView android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:id="@+id/tv2"/></LinearLayout>

Add the new activity to manifest. xml.

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.