activity中 调用startActivityForResult的步骤及生命周期

说明:一个activity需要另一个activity返回结果给其的时候,可以使用startActivityForResult方法

现在有两个activity,分别为ForResultActivity和ResultActivity

以下案例中ForResultActivity需要知道3+2=?需要在ResultActivity中进行计算,计算后将结果返回ForResultActivity中,并显示;

ForResultActivity界面如下:



ForResultActivity代码如下:

[java]  view plain  copy
 print ?
  1. import android.app.Activity;  
  2. import android.content.Intent;  
  3. import android.os.Bundle;  
  4. import android.util.Log;  
  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 ForResultActivity extends Activity implements OnClickListener {  
  11.     private Button button1;  
  12.     private TextView textView1;  
  13.   
  14.     private static final String TAG = "ForResultActivity";  
  15.     private static final int RESULT_CODE = 101;  
  16.   
  17.     @Override  
  18.     protected void onCreate(Bundle savedInstanceState) {  
  19.         // TODO Auto-generated method stub  
  20.         super.onCreate(savedInstanceState);  
  21.         Log.e(TAG, "onCreate方法被调用");  
  22.         setContentView(R.layout.activity_for_result);  
  23.         button1 = (Button) findViewById(R.id.button1);  
  24.         button1.setOnClickListener(this);  
  25.         textView1 = (TextView) findViewById(R.id.textView1);  
  26.   
  27.     }  
  28.   
  29.     @Override  
  30.     protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
  31.         // TODO Auto-generated method stub  
  32.         super.onActivityResult(requestCode, resultCode, data);  
  33.         Log.e(TAG, "onActivityResult方法被调用");  
  34.         if (RESULT_CODE == resultCode) {  
  35.             if (data != null) {  
  36.                 String result = data.getStringExtra("RESULT");  
  37.                 textView1.setText(result);  
  38.             }  
  39.         }  
  40.     }  
  41.   
  42.     @Override  
  43.     protected void onStart() {  
  44.         // TODO Auto-generated method stub  
  45.         super.onStart();  
  46.         Log.e(TAG, "onStart方法被调用");  
  47.     }  
  48.   
  49.     @Override  
  50.     protected void onRestart() {  
  51.         // TODO Auto-generated method stub  
  52.         super.onRestart();  
  53.         Log.e(TAG, "onRestart方法被调用");  
  54.     }  
  55.   
  56.     @Override  
  57.     protected void onResume() {  
  58.         // TODO Auto-generated method stub  
  59.         super.onResume();  
  60.         Log.e(TAG, "onResume方法被调用");  
  61.     }  
  62.   
  63.     @Override  
  64.     protected void onPause() {  
  65.         // TODO Auto-generated method stub  
  66.         super.onPause();  
  67.         Log.e(TAG, "onPause方法被调用");  
  68.     }  
  69.   
  70.     @Override  
  71.     protected void onStop() {  
  72.         // TODO Auto-generated method stub  
  73.         super.onStop();  
  74.         Log.e(TAG, "onStop方法被调用");  
  75.     }  
  76.   
  77.     @Override  
  78.     protected void onDestroy() {  
  79.         // TODO Auto-generated method stub  
  80.         super.onDestroy();  
  81.         Log.e(TAG, "onDestroy方法被调用");  
  82.     }  
  83.   
  84.     @Override  
  85.     public void onClick(View v) {  
  86.         Intent intent = new Intent(this, ResultActivity.class);  
  87.         // 传人3和2。。。  
  88.         startActivityForResult(intent, RESULT_CODE);  
  89.     }  
  90. }  

[html]  view plain  copy
 print ?
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:layout_width="fill_parent"  
  3.     android:layout_height="fill_parent"  
  4.     android:orientation="vertical" >  
  5.   
  6.     <Button  
  7.         android:id="@+id/button1"  
  8.         android:layout_width="wrap_content"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="计算3+2等于几?" />  
  11.   
  12.     <TextView  
  13.         android:id="@+id/textView1"  
  14.         android:layout_width="wrap_content"  
  15.         android:layout_height="wrap_content"  
  16.         android:text="结果显示在这里" />  
  17.   
  18. </LinearLayout>  




生命周期:




说明:ForResultActivity调用startActivityForResult()方法启动ResultActivity,通过重写onActivityResult()方法获取ResultActivity返回的结果


ForResultActivity中点击按钮时的生命周期:



ResultActivity界面如下:



ResultActivity代码如下:

[java]  view plain  copy
 print ?
  1. import android.app.Activity;  
  2. import android.content.Intent;  
  3. import android.os.Bundle;  
  4. import android.util.Log;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.widget.Button;  
  8.   
  9. public class ResultActivity extends Activity implements OnClickListener{  
  10.     private Button button1;  
  11.     private static final String TAG = "ResultActivity";  
  12.     private static final int RESULT_CODE = 101;   
  13.     @Override  
  14.     protected void onCreate(Bundle savedInstanceState) {  
  15.         // TODO Auto-generated method stub  
  16.         super.onCreate(savedInstanceState);  
  17.         Log.e(TAG, "onCreate方法被调用");  
  18.         setContentView(R.layout.activity_result);  
  19.         // 假装收到3和2。。。计算结果  
  20.         button1 = (Button) findViewById(R.id.button1);  
  21.         button1.setOnClickListener(this);  
  22.     }  
  23.   
  24.   
  25.     @Override  
  26.     protected void onStart() {  
  27.         // TODO Auto-generated method stub  
  28.         super.onStart();  
  29.         Log.e(TAG, "onStart方法被调用");  
  30.     }  
  31.   
  32.     @Override  
  33.     protected void onRestart() {  
  34.         // TODO Auto-generated method stub  
  35.         super.onRestart();  
  36.         Log.e(TAG, "onRestart方法被调用");  
  37.     }  
  38.   
  39.     @Override  
  40.     protected void onResume() {  
  41.         // TODO Auto-generated method stub  
  42.         super.onResume();  
  43.         Log.e(TAG, "onResume方法被调用");  
  44.     }  
  45.   
  46.     @Override  
  47.     protected void onPause() {  
  48.         // TODO Auto-generated method stub  
  49.         super.onPause();  
  50.         Log.e(TAG, "onPause方法被调用");  
  51.     }  
  52.   
  53.     @Override  
  54.     protected void onStop() {  
  55.         // TODO Auto-generated method stub  
  56.         super.onStop();  
  57.         Log.e(TAG, "onStop方法被调用");  
  58.     }  
  59.   
  60.     @Override  
  61.     protected void onDestroy() {  
  62.         // TODO Auto-generated method stub  
  63.         super.onDestroy();  
  64.         Log.e(TAG, "onDestroy方法被调用");  
  65.     }  
  66.   
  67.     @Override  
  68.     public void onClick(View v) {  
  69.         Intent intent = new Intent(this, ForResultActivity.class);  
  70.         // 将结果返回  
  71.         intent.putExtra("RESULT""5");  
  72.         setResult(RESULT_CODE, intent);  
  73.         finish();  
  74.     }  
  75.   
  76.       
  77. }  


[html]  view plain  copy
 print ?
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:layout_width="fill_parent"  
  3.     android:layout_height="fill_parent"  
  4.     android:orientation="vertical" >  
  5.   
  6.     <Button  
  7.         android:id="@+id/button1"  
  8.         android:layout_width="wrap_content"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="等于5-_-点击我将结果返回" />  
  11.   
  12. </LinearLayout>  




说明:ResultActivity通过调用setResult方法将结果返回,返回后的界面如下



ResultActivity中点击按钮时的生命周期:


可以看到ForResultActivity先调用了onActivityResult方法,然后是onRestart、onStart、onResume方法;


AndroidManifest.xml中如下

[html]  view plain  copy
 print ?
  1. <!-- 需要返回值得Action -->  
  2.         <activity  
  3.            android:name=".ForResultActivity"  
  4.            android:label="@string/app_name" >  
  5.        </activity>  
  6.        <!-- 将数据返回到ForResultActivity这个Activity中 -->  
  7.         <activity  
  8.            android:name=".ResultActivity"  
  9.            android:label="@string/app_name" >  
  10.        </activity>  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值