1. 程式人生 > >Android的startActivityForResult()與onActivityResult()與setResult()引數分析,activity帶引數的返回

Android的startActivityForResult()與onActivityResult()與setResult()引數分析,activity帶引數的返回

轉載自:https://www.cnblogs.com/fuck1/p/5456337.html

一、使用場景

  在一個主介面(主Activity)通過意圖跳轉至多個不同子Activity上去,當子模組的程式碼執行完畢後再次返回主頁面,將子activity中得到的資料顯示在主介面/完成的資料交給主Activity處理。這種帶資料的意圖跳轉需要使用activity的onActivityResult()方法。

(1)startActivityForResult(Intent intent, int requestCode);

   第一個引數:一個Intent物件,用於攜帶將跳轉至下一個介面中使用的資料,使用putExtra(A,B)方法,此處儲存的資料型別特別多,基本型別全部支援。

   第二個引數:如果> = 0,當Activity結束時requestCode將歸還在onActivityResult()中。以便確定返回的資料是從哪個Activity中返回,用來標識目標activity。

  與下面的resultCode功能一致,感覺Android就是為了保證資料的嚴格一致性特地設定了兩把鎖,來保證資料的傳送,目的地的嚴格一致性。

(2)onActivityResult(int requestCode, int resultCode, Intent data)

  第一個引數:這個整數requestCode用於與startActivityForResult中的requestCode中值進行比較判斷,是以便確認返回的資料是從哪個Activity返回的。

  第二個引數:這整數resultCode是由子Activity通過其setResult()方法返回。適用於多個activity都返回資料時,來標識到底是哪一個activity返回的值。

  第三個引數:一個Intent物件,帶有返回的資料。可以通過data.getXxxExtra( );方法來獲取指定資料型別的資料,

(3)setResult(int resultCode, Intent data)

  在意圖跳轉的目的地介面呼叫這個方法把Activity想要返回的資料返回到主Activity,

  第一個引數:當Activity結束時resultCode將歸還在onActivityResult()中,一般為RESULT_CANCELED , RESULT_OK該值預設為-1。

  第二個引數:一個Intent物件,返回給主Activity的資料。在intent物件攜帶了要返回的資料,使用putExtra( )方法。上面由濟南大介紹。

//-------------------------------------------------------------程式碼分割線

//不多說貼一個Demo,介紹一下:在主activity裡面讓使用者分別在2個edittext裡面輸入兩個數,然後將這兩個數傳遞至下面的activity,在下面的activity裡面計算結果並返回。

//首先是主activity,佈局檔案不再給出~~~

複製程式碼
 1 /*
 2  * 在activity跳轉的時候實現資料的傳遞與返回
 3  *  4 */  5 import android.app.Activity;  6 import android.content.Intent;  7 import android.os.Bundle;  8 import android.view.View;  9 import android.view.View.OnClickListener; 10 import android.widget.Button; 11 import android.widget.EditText; 12 13 public class MainActivity extends Activity { 14 15 private Button button; 16 private final static int REQUESTCODE = 1; // 返回的結果碼 17 private EditText one, two, result; 18 19  @Override 20 protected void onCreate(Bundle savedInstanceState) { 21 super.onCreate(savedInstanceState); 22  setContentView(R.layout.activity_main); 23 one = (EditText) findViewById(R.id.Text_one); 24 two = (EditText) findViewById(R.id.Text_two); 25 result = (EditText) findViewById(R.id.Text_result); 26 button = (Button) findViewById(R.id.button); 27 button.setOnClickListener(new OnClickListener() { 28  @Override 29 public void onClick(View v) { 30 // TODO Auto-generated method stub 31 // 獲取使用者輸入的兩個值 32 int a = Integer.parseInt(one.getText().toString()); 33 int b = Integer.parseInt(two.getText().toString()); 34 35 // 意圖實現activity的跳轉 36 Intent intent = new Intent(MainActivity.this, 37 OtherActivity.class); 38 intent.putExtra("a", a); 39 intent.putExtra("b", b); 40 41 42 // 這種啟動方式:startActivity(intent);並不能返回結果 43 startActivityForResult(intent, REQUESTCODE); //REQUESTCODE--->1 44  } 45  }); 46  } 47 48 // 為了獲取結果 49  @Override 50 protected void onActivityResult(int requestCode, int resultCode, Intent data) { 51 super.onActivityResult(requestCode, resultCode, data); 52 // RESULT_OK,判斷另外一個activity已經結束資料輸入功能,Standard activity result: 53 // operation succeeded. 預設值是-1 54 if (resultCode == 2) { 55 if (requestCode == REQUESTCODE) { 56 int three = data.getIntExtra("three", 0); 57 //設定結果顯示框的顯示數值 58  result.setText(String.valueOf(three)); 59  } 60  } 61  } 62 63 }
複製程式碼

//與主activity對應的佈局檔案

複製程式碼
 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical"
 6 tools:context=".MainActivity" >  7  8 <LinearLayout  9 android:layout_width="match_parent" 10 android:layout_height="wrap_content" 11 android:orientation="horizontal" > 12 13 <EditText 14 android:id="@+id/Text_one" 15 android:layout_width="80dp" 16 android:layout_height="wrap_content" /> 17 18 <TextView 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:text=" + " /> 22 23 <EditText 24 android:id="@+id/Text_two" 25 android:layout_width="80dp" 26 android:layout_height="wrap_content" /> 27 28 <TextView 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:text=" = " /> 32 33 <EditText 34 android:id="@+id/Text_result" 35 android:layout_width="80dp" 36 android:layout_height="wrap_content" /> 37 </LinearLayout> 38 39 <Button 40 android:id="@+id/button" 41 android:layout_width="match_parent" 42 android:layout_height="wrap_content" 43 android:text="計算結果" /> 44 45 </LinearLayout>
複製程式碼

//第二個activity

複製程式碼
 1 import android.app.Activity;
 2 import android.content.Intent;  3 import android.os.Bundle;  4 import android.view.View;  5 import android.view.View.OnClickListener;  6 import android.widget.Button;  7 import android.widget.EditText;  8 import android.widget.TextView;  9 10 public class OtherActivity extends Activity { 11 12 private Button button; 13 private TextView textView; 14 private EditText editText; 15 16  @Override 17 protected void onCreate(Bundle savedInstanceState) { 18 // TODO Auto-generated method stub 19 super.onCreate(savedInstanceState); 20  setContentView(R.layout.other); 21 button = (Button) findViewById(R.id.button2); 22 textView = (TextView) findViewById(R.id.msg); 23 editText = (EditText) findViewById(R.id.Text_three); 24 // 去除傳遞過來的意圖,並提取資料 25 Intent intent = getIntent();此處並不是建立而是直接獲取一個intent物件Return the intent that started this activity.  26 int a = intent.getIntExtra("a", 0); // 沒有輸入值預設為0 27 int b = intent.getIntExtra("b", 0); // 沒有輸入值預設為0 28 textView.setText(a + " + " + b + " = " + " ? "); 29 30 button.setOnClickListener(new OnClickListener() { 31  @Override 32 public void onClick(View v) { 33 // TODO Auto-generated method stub 34 Intent intent = new Intent(); 35 // 獲取使用者計算後的結果 36 int three = Integer.parseInt(editText.getText().toString()); 37 intent.putExtra("three", three); //將計算的值回傳回去 38 //通過intent物件返回結果,必須要呼叫一個setResult方法, 39 //setResult(resultCode, data);第一個引數表示結果返回碼,一般只要大於1就可以,但是 40 setResult(2, intent); 41 42 finish(); //結束當前的activity的生命週期 43  } 44  }); 45  } 46 }
複製程式碼

//佈局檔案

複製程式碼
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" android:orientation="vertical" > <TextView android:id="@+id/msg" android:layout_width="match_parent" android:layout_height="wrap_content" /> <EditText android:id="@+id/Text_three" android:layout_width="match_parent" android:layout_height="wrap_content" /> </LinearLayout> <Button android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="返回結果" /> </LinearLayout>
複製程式碼

 

開始在code,我的個人特色。

轉載自:https://www.cnblogs.com/fuck1/p/5456337.html

一、使用場景

  在一個主介面(主Activity)通過意圖跳轉至多個不同子Activity上去,當子模組的程式碼執行完畢後再次返回主頁面,將子activity中得到的資料顯示在主介面/完成的資料交給主Activity處理。這種帶資料的意圖跳轉需要使用activity的onActivityResult()方法。

(1)startActivityForResult(Intent intent, int requestCode);

   第一個引數:一個Intent物件,用於攜帶將跳轉至下一個介面中使用的資料,使用putExtra(A,B)方法,此處儲存的資料型別特別多,基本型別全部支援。

   第二個引數:如果> = 0,當Activity結束時requestCode將歸還在onActivityResult()中。以便確定返回的資料是從哪個Activity中返回,用來標識目標activity。

  與下面的resultCode功能一致,感覺Android就是為了保證資料的嚴格一致性特地設定了兩把鎖,來保證資料的傳送,目的地的嚴格一致性。

(2)onActivityResult(int requestCode, int resultCode, Intent data)

  第一個引數:這個整數requestCode用於與startActivityForResult中的requestCode中值進行比較判斷,是以便確認返回的資料是從哪個Activity返回的。

  第二個引數:這整數resultCode是由子Activity通過其setResult()方法返回。適用於多個activity都返回資料時,來標識到底是哪一個activity返回的值。

  第三個引數:一個Intent物件,帶有返回的資料。可以通過data.getXxxExtra( );方法來獲取指定資料型別的資料,

(3)setResult(int resultCode, Intent data)

  在意圖跳轉的目的地介面呼叫這個方法把Activity想要返回的資料返回到主Activity,

  第一個引數:當Activity結束時resultCode將歸還在onActivityResult()中,一般為RESULT_CANCELED , RESULT_OK該值預設為-1。

  第二個引數:一個Intent物件,返回給主Activity的資料。在intent物件攜帶了要返回的資料,使用putExtra( )方法。上面由濟南大介紹。

//-------------------------------------------------------------程式碼分割線

//不多說貼一個Demo,介紹一下:在主activity裡面讓使用者分別在2個edittext裡面輸入兩個數,然後將這兩個數傳遞至下面的activity,在下面的activity裡面計算結果並返回。

//首先是主activity,佈局檔案不再給出~~~

複製程式碼
 1 /*
 2  * 在activity跳轉的時候實現資料的傳遞與返回
 3  *  4 */  5 import android.app.Activity;  6 import android.content.Intent;  7 import android.os.Bundle;  8 import android.view.View;  9 import android.view.View.OnClickListener; 10 import android.widget.Button; 11 import android.widget.EditText; 12 13 public class MainActivity extends Activity { 14 15 private Button button; 16 private final static int REQUESTCODE = 1; // 返回的結果碼 17 private EditText one, two, result; 18 19  @Override 20 protected void onCreate(Bundle savedInstanceState) { 21 super.onCreate(savedInstanceState); 22  setContentView(R.layout.activity_main); 23 one = (EditText) findViewById(R.id.Text_one); 24 two = (EditText) findViewById(R.id.Text_two); 25 result = (EditText) findViewById(R.id.Text_result); 26 button = (Button) findViewById(R.id.button); 27 button.setOnClickListener(new OnClickListener() { 28  @Override 29 public void onClick(View v) { 30 // TODO Auto-generated method stub 31 // 獲取使用者輸入的兩個值 32 int a = Integer.parseInt(one.getText().toString()); 33 int b = Integer.parseInt(two.getText().toString()); 34 35 // 意圖實現activity的跳轉 36 Intent intent = new Intent(MainActivity.this, 37 OtherActivity.class); 38 intent.putExtra("a", a); 39 intent.putExtra("b", b); 40 41 42 // 這種啟動方式:startActivity(intent);並不能返回結果 43 startActivityForResult(intent, REQUESTCODE); //REQUESTCODE--->1 44  } 45  }); 46  } 47 48 // 為了獲取結果 49  @Override 50 protected void onActivityResult(int requestCode, int resultCode, Intent data) { 51 super.onActivityResult(requestCode, resultCode, data); 52 // RESULT_OK,判斷另外一個activity已經結束資料輸入功能,Standard activity result: 53 // operation succeeded. 預設值是-1 54 if (resultCode == 2) { 55 if (requestCode == REQUESTCODE) { 56 int three = data.getIntExtra("three", 0); 57 //設定結果顯示框的顯示數值 58  result.setText(String.valueOf(three)); 59  } 60  } 61  } 62 63 }
複製程式碼

//與主activity對應的佈局檔案

複製程式碼
 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical"
 6 tools:context=".MainActivity" >  7  8 <LinearLayout  9 android:layout_width="match_parent" 10 android:layout_height="wrap_content" 11 android:orientation="horizontal" > 12 13 <EditText 14 android:id="@+id/Text_one" 15 android:layout_width="80dp" 16 android:layout_height="wrap_content" /> 17 18 <TextView 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:text=" + " /> 22 23 <EditText 24 android:id="@+id/Text_two" 25 android:layout_width="80dp" 26 android:layout_height="wrap_content" /> 27 28 <TextView 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:text=" = " /> 32 33 <EditText 34 android:id="@+id/Text_result" 35 android:layout_width="80dp" 36 android:layout_height="wrap_content" /> 37 </LinearLayout> 38 39 <Button 40 android:id="@+id/button" 41 android:layout_width="match_parent" 42 android:layout_height="wrap_content" 43 android:text="計算結果" /> 44 45 </LinearLayout>
複製程式碼

//第二個activity

複製程式碼
 1 import android.app.Activity;
 2 import android.content.Intent;  3 import android.os.Bundle;  4 import android.view.View;  5 import android.view.View.OnClickListener;  6 import android.widget.Button;  7 import android.widget.EditText;  8 import android.widget.TextView;  9 10 public class OtherActivity extends Activity { 11 12 private Button button; 13 private TextView textView; 14 private EditText editText; 15 16  @Override 17 protected void onCreate(Bundle savedInstanceState) { 18 // TODO Auto-generated method stub 19 super.onCreate(savedInstanceState); 20  setContentView(R.layout.other); 21 button = (Button) findViewById(R.id.button2); 22 textView = (TextView) findViewById(R.id.msg); 23 editText = (EditText) findViewById(R.id.Text_three); 24 // 去除傳遞過來的意圖,並提取資料 25 Intent intent = getIntent();此處並不是建立而是直接獲取一個intent物件Return the intent that started this activity.  26 int a = intent.getIntExtra("a", 0); // 沒有輸入值預設為0 27 int b = intent.getIntExtra("b", 0); // 沒有輸入值預設為0 28 textView.setText(a + " + " + b + " = " + " ? "); 29 30 button.setOnClickListener(new OnClickListener() { 31  @Override 32 public void onClick(View v) { 33 // TODO Auto-generated method stub 34 Intent intent = new Intent(); 35 // 獲取使用者計算後的結果 36 int three = Integer.parseInt(editText.getText().toString()); 37 intent.putExtra("three", three); //將計算的值回傳回去 38 //通過intent物件返回結果,必須要呼叫一個setResult方法, 39 //setResult(resultCode, data);第一個引數表示結果返回碼,一般只要大於1就可以,但是 40 setResult(2, intent); 41 42 finish(); //結束當前的activity的生命週期 43  } 44  }); 45  } 46 }
複製程式碼

//佈局檔案

複製程式碼
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" android:orientation="vertical" > <TextView android:id="@+id/msg" android:layout_width="match_parent" android:layout_height="wrap_content" /> <EditText android:id="@+id/Text_three" android:layout_width="match_parent" android:layout_height="wrap_content" /> </LinearLayout> <Button android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="返回結果" /> </LinearLayout>
複製程式碼