IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android小实例-Activity之间数据交流 -> 正文阅读

[移动开发]Android小实例-Activity之间数据交流

作者:recommend-item-box type_blog clearfix

简介

活动(Activity)之间数据传递是相互的,介绍了上一页面将数据传递到下一个页面和上下一个页面将数据返回给上一页面。

向下传递数据

先需要两个活动(Activity)和对应的布局文件。
首先首页布局文件只需要一个按钮

第一个活动与布局

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    
    xmlns:app="http://schemas.android.com/apk/res-auto"    
    xmlns:tools="http://schemas.android.com/tools"    
    android:layout_width="match_parent"        
    android:layout_height="match_parent"         
    tools:context=".MainActivity" >
        <Button        
        android:id="@+id/send"		
        android:text="发送"		
        android:layout_width="match_parent"        
        android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>

java代码


package com.buxiaju.test3;
import android.content.Intent;
import android.view.View;
import android.widget.Button;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import com.buxiaju.test3.NewActivity;
public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {        
        super.onCreate(savedInstanceState);        
        setContentView(R.layout.activity_main);		
        //创建一个意图,准备跳到指定的活动页面		
        Intent intent = new Intent(this, NewActivity.class);		
        Bundle bundle = new Bundle(); //创建一个新包裹		
        //向包裹存入名为msg的字符串		
        bundle.putString("msg","今天很高兴");				
        intent.putExtras(bundle);//把快递包裹塞进意图中		
        Button bt = findViewById(R.id.send);		bt.setOnClickListener(new View.OnClickListener(){			
        @Override			
        public void onClick(View v){				
        startActivity(intent);				
        finish();//销毁当前页面			
            }		
        });		    
    
    }
}

第二个活动与布局

布局文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"    
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    android:orientation="vertical">	
    <TextView		
        android:id="@+id/tv"		
        android:layout_width="match_parent"       
         android:layout_height="wrap_content"/>
 </LinearLayout>
package com.buxiaju.test3;
import android.os.Bundle;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
public class NewActivity extends AppCompatActivity {	
    @Override   
     protected void onCreate(Bundle savedInstanceState) {        
         super.onCreate(savedInstanceState);        
         setContentView(R.layout.activity_new);		
         Bundle bundle = getIntent().getExtras();		//从上一个页面传来的意图中获取包裹
         String msg = bundle.getString("msg");		//从包裹中取出名为msg的内容
         TextView tv = findViewById(R.id.tv);		
         tv.setText(msg);		    
         }	
}

界面效果

首页
在这里插入图片描述

点击按钮后
在这里插入图片描述

向上传递数据

也是两个活动,两个布局

第一个布局与活动

布局


<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"    
    xmlns:app="http://schemas.android.com/apk/res-auto"    
    xmlns:tools="http://schemas.android.com/tools"    
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    tools:context=".MainActivity">    
    <TextView
    		android:id="@+id/tv1"        
    		android:layout_width="wrap_content"        
    		android:layout_height="wrap_content"        
    		android:text="Hello World!"        
    		app:layout_constraintBottom_toBottomOf="parent"        
    		app:layout_constraintLeft_toLeftOf="parent"        
    		app:layout_constraintRight_toRightOf="parent"        
    		app:layout_constraintTop_toTopOf="parent" />	
    <Button
    		android:id="@+id/bt1"		
    		android:layout_width="match_parent"		
    		android:layout_height="wrap_content"		
    		android:text="跳转下一页"/></androidx.constraintlayout.widget.ConstraintLayout>

Java代码

package com.buxiaju.test4;
import android.app.Activity;import android.content.Intent;
import android.view.View;import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;
public class MainActivity extends AppCompatActivity {	
    private TextView tv;	
    private Button bt;	
    @Override	
    protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);		
    		setContentView(R.layout.activity_main);		
    		tv = findViewById(R.id.tv1);	    
    		bt = findViewById(R.id.bt1);		
    		//创建一个意图		
    		Intent intent = new Intent(this, NewActivity.class);		
    		bt.setOnClickListener(new View.OnClickListener() {
    					@Override			
    					public void onClick(View v) {
    									startActivityForResult(intent,0);
    					}		
    		  });	
    }	
	@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent intent){
			super.onActivityResult(requestCode, resultCode, intent);				
			if (intent != null && requestCode == 0 && resultCode == Activity.RESULT_OK){
							//从返回的意图中获取包裹			
							Bundle bundle = intent.getExtras();			
							//从包裹中获取数据			
							String msg = bundle.getString("msg");			
							tv.setText(msg);		
				}	
		}
}

第二个活动与布局


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"    
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    android:orientation="vertical">	

	<Button		
	    android:id="@+id/bt2"		
	    android:layout_width="match_parent"		
	    android:layout_height="wrap_content"		
	    android:text="回到上一页"/>
</LinearLayout>

Java代码


package com.buxiaju.test4;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import androidx.appcompat.app.AppCompatActivity;
public class NewActivity extends AppCompatActivity {	
    private Button bt;	
    @Override	
    protected void onCreate(Bundle savedInstanceState) {		
            super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_new);		
    		bt = findViewById(R.id.bt2);		
    		bt.setOnClickListener(new View.OnClickListener() {			
    		    @Override			
    		    public void onClick(View v) {
    		    				Intent intent = new Intent();				
    		    				Bundle bundle = new Bundle();								
    		    				bundle.putString("msg", "你好陌生人");				
    		    				intent.putExtras(bundle);				
    		    				setResult(Activity.RESULT_OK, intent);			 
    		    				finish();			
    		    }		
    	    });	
    	}
   }

效果

第一个页面

在这里插入图片描述
点击按钮

在这里插入图片描述

再次点击这个页面的按钮
会发现文本中的内容变了
在这里插入图片描述

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-05-09 12:51:06  更:2022-05-09 12:51:17 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 0:03:32-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码