上次给大家介绍了如何使用意图在Activity之间传递数据,这次讲解一下如何使用静态变量来传递数据,

原理其实很简单,就是在接收端的Avtivity里面设置static的变量,在发送端这边改变静态变量的值,然后启动意图。

效果图为:

发送端截图:

Android入门篇三:使用静态变量在Activity之间传递数据_第1张图片

接收端截图:

Android入门篇三:使用静态变量在Activity之间传递数据_第2张图片

那么就直接给代码了:

一、MainActivity.java

 

[html]  view plain copy
  1. package com.intent.activity;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.view.View.OnClickListener;  
  8. import android.widget.Button;  
  9.   
  10. public class MainActivity extends Activity {  
  11.     private Button btn;  
  12.     @Override  
  13.     public void onCreate(Bundle savedInstanceState) {  
  14.         super.onCreate(savedInstanceState);  
  15.         setContentView(R.layout.main);  
  16.         btn = (Button)findViewById(R.id.btOpenOtherActivity);  
  17.         btn.setOnClickListener(new OnClickListener() {  
  18.             @Override  
  19.             public void onClick(View v) {  
  20.                 //定义一个意图  
  21.                 Intent intent = new Intent(MainActivity.this,OtherActivity.class);  
  22.                 //改变OtherActivity的三个静态变量的值  
  23.                 OtherActivity.name = "wulianghuan";  
  24.                 OtherActivity.age = "22";  
  25.                 OtherActivity.address = "上海闵行";  
  26.                 startActivity(intent);  
  27.             }  
  28.         });  
  29.     }  
  30. }  


二、OtherActivity.java

 

 

[html]  view plain copy
  1. package com.intent.activity;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.widget.Button;  
  8. import android.widget.TextView;  
  9.   
  10. public class OtherActivity extends Activity {  
  11.     public static String name;  
  12.     public static String age;  
  13.     public static String address;  
  14.     private TextView text_name;  
  15.     private TextView text_age;  
  16.     private TextView text_address;  
  17.   
  18.     @Override  
  19.     public void onCreate(Bundle savedInstanceState) {  
  20.         super.onCreate(savedInstanceState);  
  21.         setContentView(R.layout.other);  
  22.         text_name = (TextView) findViewById(R.id.name);  
  23.         text_age = (TextView) findViewById(R.id.age);  
  24.         text_address = (TextView) findViewById(R.id.address);     
  25.         //设置文本框的数据  
  26.         text_name.setText("姓名:"+name);  
  27.         text_age.setText("年龄:"+age);  
  28.         text_address.setText("地址:"+address);  
  29.     }  
  30. }  


布局文件

 

三、main.xml

 

[html]  view plain copy
  1. xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="这是:MainActivity" />  
  11.       
  12.     <Button   
  13.         android:layout_width="wrap_content"  
  14.         android:layout_height="wrap_content"  
  15.         android:id="@+id/btOpenOtherActivity"  
  16.         android:text="使用静态变量传递数据"/>  
  17.   
  18. LinearLayout>  


四、other.xml

 

 

[html]  view plain copy
  1. xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="这是:MainActivity" />  
  11.       
  12.     <Button   
  13.         android:layout_width="wrap_content"  
  14.         android:layout_height="wrap_content"  
  15.         android:id="@+id/btOpenOtherActivity"  
  16.         android:text="使用意图传递数据"/>  
  17.   
  18. LinearLayout>