博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Activity与Activity之间的传值
阅读量:5323 次
发布时间:2019-06-14

本文共 4083 字,大约阅读时间需要 13 分钟。

//----------Activity1中的布局---------------------------------

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:id="@+id/tv_text1"
        android:text="我是Activity1" />
    <EditText android:layout_width="match_parent"
        android:layout_height="50dp"
        android:id="@+id/et_edittext1"/>
    <Button android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="跳转到Activity2"
        android:id="@+id/bt_button1"/>
</LinearLayout>

//------------------Activity2的布局文件-------------------------------

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
     <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:id="@+id/tv_text2"
        android:text="我是Activity2" />
    <EditText android:layout_width="match_parent"
        android:layout_height="50dp"
        android:id="@+id/et_edittext2"/>
    <Button android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="跳转到Activity1"
        android:id="@+id/bt_button2"/>
</LinearLayout>

//---------------Activity1中-------------------------------

package com.example.test;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends Activity implements OnClickListener {
    private Button bt_button1;
    private TextView tv_text1;
    private EditText et_edittext1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv_text1 = (TextView) findViewById(R.id.tv_text1);
        et_edittext1 = (EditText) findViewById(R.id.et_edittext1);
        bt_button1 = (Button) findViewById(R.id.bt_button1);
        bt_button1.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.bt_button1:
            Intent intent=new Intent(this,TwoActivity.class);
            String text=et_edittext1.getText().toString().trim();
            intent.putExtra("kk", text);
            startActivityForResult(intent, 0);
            break;
        default:
            break;
        }
        
    }
    //此方法用户接受返回的数据
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        switch (resultCode) {
        case 1:
            Bundle b=data.getExtras();
            String str=b.getString("ww");
            tv_text1.setText(str);
            break;
        default:
            break;
        }
        
    }
    
    
}

//----------------Activity2中----------------------------

package com.example.test;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class TwoActivity extends Activity implements OnClickListener {
    private TextView tv_text2;
    private EditText et_edittext2;
    private Button bt_button2;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_two);
        //找到控件
        tv_text2 = (TextView) findViewById(R.id.tv_text2);
        et_edittext2 = (EditText) findViewById(R.id.et_edittext2);
        bt_button2 = (Button) findViewById(R.id.bt_button2);
        //获得Activity1传递来的值
        Intent intent=getIntent();
        String str=intent.getStringExtra("kk");
        //显示Activity1传递来的值
        tv_text2.setText(str);
        
        
        bt_button2.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.bt_button2:
            String text=et_edittext2.getText().toString().trim();
            Intent intent=new Intent(this,MainActivity.class);
            intent.putExtra("ww", text);
            //用setResult返回数据
            setResult(1, intent);
            finish();
            break;
        default:
            break;
        }
        
    }
    
}

 

转载于:https://www.cnblogs.com/changyiqiang/p/6027773.html

你可能感兴趣的文章
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>
Python中的greenlet包实现并发编程的入门教程
查看>>
java中遍历属性字段及值(常见方法)
查看>>
深入理解jQuery框架-框架结构
查看>>
YUI3自动加载树实现
查看>>
python知识思维导图
查看>>
当心JavaScript奇葩的逗号表达式
查看>>
App Store最新审核指南(2015年3月更新版)
查看>>
织梦MIP文章内容页图片适配百度MIP规范
查看>>
点击复制插件clipboard.js
查看>>
[Kali_BT]通过低版本SerialPort蓝牙渗透功能手机
查看>>
C语言学习总结(三) 复杂类型
查看>>
HNOI2018
查看>>
【理财】关于理财的网站
查看>>
Ubunt中文乱码
查看>>
《当幸福来敲门》读后
查看>>
【转】系统无法进入睡眠模式解决办法
查看>>
省市县,循环组装,整合大数组
查看>>