intent实现数据传递

在android开发中,经常要在Activity之间传递数据。Intent可以用来开启Activity,同样也可以用来在Activity之间传递数据。

以用户注册为例来演示

第一个activity布局文件

  
      
          
          
      
      
          
          
      
  
      
          
          
          
      
  
    

界面交互代码


package com.example.lenovo.signup;  
  
import android.content.Intent;  
import android.provider.MediaStore;  
import android.support.v7.app.AppCompatActivity;  
import android.os.Bundle;  
import android.view.View;  
import android.widget.Button;  
import android.widget.EditText;  
import android.widget.RadioButton;  
  
public class MainActivity extends AppCompatActivity {  
    private RadioButton manRadio;  
    private RadioButton womanRadio;  
    private EditText et_password;  
    private Button btn_send;  
    private EditText et_name;  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setTitle("填写用户信息");  
        setContentView(R.layout.activity_main);  
        et_name=(EditText) findViewById(R.id.et_name);  
        et_password=(EditText) findViewById(R.id.et_password);  
        btn_send=(Button) findViewById(R.id.btn_send);  
        manRadio=(RadioButton) findViewById(R.id.radioMale);  
        womanRadio=(RadioButton) findViewById(R.id.radioFemale);  
        btn_send=(Button) findViewById(R.id.btn_send);  
        //点击提交用户信息按钮进行数据传递  
        btn_send.setOnClickListener(new View.OnClickListener() {  
            @Override  
            public void onClick(View view) {  
                passDate();  
            }  
        });  
    }//数据传递  
    public void passDate(){  
        //创建intent对象,启动Activity02  
        Intent intent=new Intent(this,Activity02.class);  
        //将数据存入Intent对象  
        intent.putExtra("name",et_name.getText().toString().trim());  
        intent.putExtra("password",et_password.getText().toString().trim());  
        String str="";  
        if(manRadio.isChecked()){  
            str="男";  
        }else if(womanRadio.isChecked()){  
            str="女";  
        }  
        intent.putExtra("sex",str);  
        startActivity(intent);  
    }  
} 
上述代码中,passDate()方法实现了获取用户输入数据,并且将Intent作为载体进行数据传递。
接收数据activity界面
  
  
  
      
      
      
 

activity02

package com.example.lenovo.signup;  
  
import android.content.Intent;  
import android.os.Bundle;  
import android.support.v4.widget.TextViewCompat;  
import android.support.v7.app.AppCompatActivity;  
import android.widget.TextView;  
  
  
  
/** 
 * Created by lenovo on 2017/5/7. 
 */  
  
public class Activity02 extends AppCompatActivity {  
    private TextView tv_name,tv_password,tv_sex;  
    protected void onCreate(Bundle savedInstanceState){  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity02);  
        //获取Intent对象  
        Intent intent=getIntent();  
        //取出key对应的value值  
        String name=intent.getStringExtra("name");  
        String password=intent.getStringExtra("password");  
        String sex=intent.getStringExtra("sex");  
        tv_name=(TextView) findViewById(R.id.tv_name);  
        tv_password=(TextView) findViewById(R.id.tv_password);  
        tv_sex=(TextView) findViewById(R.id.tv_sex);  
        tv_name.setText("用户名:"+name);  
        tv_password.setText("密  码:"+password);  
        tv_sex.setText("性  别:"+sex);  
    }  
}  

在清单文件中配置activity

  
  
  
      
          
              
                  
  
                  
              
          
          
          
      
  
  
需要注意的是,android:label属性是用来指定 显示在标题栏上的名称的,如果Activity设置了该属性,则跳到该Activity页面时标题栏会显示在Activity中配置册名称,否则显示在Appli中配置的名称

你可能感兴趣的:(intent实现数据传递)