startActivityForResult 用法

转自:http://javaeye.com/topic/577342


Activity 跳转 都知道用startActivity(Intent)

 

但是如果下面情况呢?

 

Activity1 跳转到 Activity2  但是还需要在Activity2 再回到 Activity1呢? 可能有人说: 那我在Activity2  再使用 startActivity() 不就可以了 是的 但是 startActivityForResult() 能够直接完成这项工作

 

 

[示例]

Activity1: 有2个EditText 用于接收用户输入的2个字符串 要求把这2个字符串连接起来 我现在把连接的工作交给 Activity2 来做 并且把连接好后的字符串再返回给 Activity1 并由它负责显示

 

[代码]

1. 构建 Activity1 所需的界面

Java代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <EditText    
  8.     android:id="@+id/first"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     />  
  12. <EditText    
  13.     android:id="@+id/second"  
  14.     android:layout_width="fill_parent"   
  15.     android:layout_height="wrap_content"   
  16.     />  
  17. <Button    
  18.     android:id="@+id/start"  
  19.     android:layout_width="fill_parent"   
  20.     android:layout_height="wrap_content"   
  21.     android:text="start"  
  22.     />  
  23. <TextView    
  24.     android:id="@+id/text"  
  25.     android:layout_width="fill_parent"   
  26.     android:layout_height="wrap_content"   
  27.     android:text="...is waiting"  
  28.     />  
  29. </LinearLayout>  

 

 

 

 

2. 得到2个EditText的用户输入

Java代码   收藏代码
  1. first = (EditText) findViewById(R.id.first);  
  2.         second = (EditText) findViewById(R.id.second);  

 

 

3. 把字符串装入Bundle 再放置于Intent 然后发送之

Java代码   收藏代码
  1. Intent i = new Intent(this, Activity2.class);  
  2.           
  3.         Bundle b = new Bundle();  
  4.           
  5.         b.putString("first", first.getText().toString());  
  6.         b.putString("second", second.getText().toString());  
  7.           
  8.         i.putExtras(b);  
  9.           
  10.         startActivityForResult(i,10);  

 

补充:

Java代码   收藏代码
  1. public void startActivityForResult (Intent intent, int requestCode)   
  2.   
  3. Intent intent:系统会根据这个确定目的Activity  
  4.   
  5. int requestCode:用于标识该Intent 回来后确定是不是想要的返回  

 

 

4. 注册View监听器

Java代码   收藏代码
  1. findViewById(R.id.start).setOnClickListener(new OnClickListener(){  
  2.             public void onClick(View v) {  
  3.                 // TODO Auto-generated method stub  
  4.                 sendCalculate();  
  5.             }  
  6.         });  

 

 

 

5. 构建 Activity2 的界面 把处理的结果返回

Java代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <Button    
  8.     android:id="@+id/reply"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     android:text="reply"  
  12.     />  
  13. </LinearLayout>  

 

 

6. 得到传入的Intent 以及传过来的2个字符串 并连接之

Java代码   收藏代码
  1. Intent i = this.getIntent();  
  2.           
  3.         Bundle b = i.getExtras();  
  4.           
  5.         String v1 = b.getString("first");  
  6.         String v2 = b.getString("second");  
  7.           
  8.         value = v1 + v2;  

 

 

7. 定义Intent 并存放返回结果 并返回之

Java代码   收藏代码
  1. Intent i = new Intent();  
  2.           
  3.         Bundle b = new Bundle();  
  4.         b.putString("CALCULATION", value);  
  5.           
  6.         i.putExtras(b);  
  7.           
  8.         this.setResult(RESULT_OK, i);  
  9.         this.finish();  

 

 

8. 事情完成了么? 当然没有 别忘了 Activity1 还要接收数据并显示之

Java代码   收藏代码
  1. protected void onActivityResult(int requestCode, int resultCode,  
  2.                                     Intent data){  
  3.         switch (resultCode){  
  4.         case RESULT_OK:  
  5.             Bundle b = data.getExtras();  
  6.               
  7.             String string = b.getString("CALCULATION");  
  8.               
  9.             updateText(string);  
  10.         }  
  11.     }  

 

 

现在才是真的结束了! 看看运行效果吧

 

1.  

 

 

2.

Activity 跳转 都知道用startActivity(Intent)

 

但是如果下面情况呢?

 

Activity1 跳转到 Activity2  但是还需要在Activity2 再回到 Activity1呢? 可能有人说: 那我在Activity2  再使用 startActivity() 不就可以了 是的 但是 startActivityForResult() 能够直接完成这项工作

 

 

[示例]

Activity1: 有2个EditText 用于接收用户输入的2个字符串 要求把这2个字符串连接起来 我现在把连接的工作交给 Activity2 来做 并且把连接好后的字符串再返回给 Activity1 并由它负责显示

 

[代码]

1. 构建 Activity1 所需的界面

Java代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <EditText    
  8.     android:id="@+id/first"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     />  
  12. <EditText    
  13.     android:id="@+id/second"  
  14.     android:layout_width="fill_parent"   
  15.     android:layout_height="wrap_content"   
  16.     />  
  17. <Button    
  18.     android:id="@+id/start"  
  19.     android:layout_width="fill_parent"   
  20.     android:layout_height="wrap_content"   
  21.     android:text="start"  
  22.     />  
  23. <TextView    
  24.     android:id="@+id/text"  
  25.     android:layout_width="fill_parent"   
  26.     android:layout_height="wrap_content"   
  27.     android:text="...is waiting"  
  28.     />  
  29. </LinearLayout>  

 

 

 

 

2. 得到2个EditText的用户输入

Java代码   收藏代码
  1. first = (EditText) findViewById(R.id.first);  
  2.         second = (EditText) findViewById(R.id.second);  

 

 

3. 把字符串装入Bundle 再放置于Intent 然后发送之

Java代码   收藏代码
  1. Intent i = new Intent(this, Activity2.class);  
  2.           
  3.         Bundle b = new Bundle();  
  4.           
  5.         b.putString("first", first.getText().toString());  
  6.         b.putString("second", second.getText().toString());  
  7.           
  8.         i.putExtras(b);  
  9.           
  10.         startActivityForResult(i,10);  

 

补充:

Java代码   收藏代码
  1. public void startActivityForResult (Intent intent, int requestCode)   
  2.   
  3. Intent intent:系统会根据这个确定目的Activity  
  4.   
  5. int requestCode:用于标识该Intent 回来后确定是不是想要的返回  

 

 

4. 注册View监听器

Java代码   收藏代码
  1. findViewById(R.id.start).setOnClickListener(new OnClickListener(){  
  2.             public void onClick(View v) {  
  3.                 // TODO Auto-generated method stub  
  4.                 sendCalculate();  
  5.             }  
  6.         });  

 

 

 

5. 构建 Activity2 的界面 把处理的结果返回

Java代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <Button    
  8.     android:id="@+id/reply"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     android:text="reply"  
  12.     />  
  13. </LinearLayout>  

 

 

6. 得到传入的Intent 以及传过来的2个字符串 并连接之

Java代码   收藏代码
  1. Intent i = this.getIntent();  
  2.           
  3.         Bundle b = i.getExtras();  
  4.           
  5.         String v1 = b.getString("first");  
  6.         String v2 = b.getString("second");  
  7.           
  8.         value = v1 + v2;  

 

 

7. 定义Intent 并存放返回结果 并返回之

Java代码   收藏代码
  1. Intent i = new Intent();  
  2.           
  3.         Bundle b = new Bundle();  
  4.         b.putString("CALCULATION", value);  
  5.           
  6.         i.putExtras(b);  
  7.           
  8.         this.setResult(RESULT_OK, i);  
  9.         this.finish();  

 

 

8. 事情完成了么? 当然没有 别忘了 Activity1 还要接收数据并显示之

Java代码   收藏代码
  1. protected void onActivityResult(int requestCode, int resultCode,  
  2.                                     Intent data){  
  3.         switch (resultCode){  
  4.         case RESULT_OK:  
  5.             Bundle b = data.getExtras();  
  6.               
  7.             String string = b.getString("CALCULATION");  
  8.               
  9.             updateText(string);  
  10.         }  
  11.     }  

 

 

现在才是真的结束了! 看看运行效果吧

 

1.  

 

 

2.

Activity 跳转 都知道用startActivity(Intent)

 

但是如果下面情况呢?

 

Activity1 跳转到 Activity2  但是还需要在Activity2 再回到 Activity1呢? 可能有人说: 那我在Activity2  再使用 startActivity() 不就可以了 是的 但是 startActivityForResult() 能够直接完成这项工作

 

 

[示例]

Activity1: 有2个EditText 用于接收用户输入的2个字符串 要求把这2个字符串连接起来 我现在把连接的工作交给 Activity2 来做 并且把连接好后的字符串再返回给 Activity1 并由它负责显示

 

[代码]

1. 构建 Activity1 所需的界面

Java代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <EditText    
  8.     android:id="@+id/first"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     />  
  12. <EditText    
  13.     android:id="@+id/second"  
  14.     android:layout_width="fill_parent"   
  15.     android:layout_height="wrap_content"   
  16.     />  
  17. <Button    
  18.     android:id="@+id/start"  
  19.     android:layout_width="fill_parent"   
  20.     android:layout_height="wrap_content"   
  21.     android:text="start"  
  22.     />  
  23. <TextView    
  24.     android:id="@+id/text"  
  25.     android:layout_width="fill_parent"   
  26.     android:layout_height="wrap_content"   
  27.     android:text="...is waiting"  
  28.     />  
  29. </LinearLayout>  

 

 

 

 

2. 得到2个EditText的用户输入

Java代码   收藏代码
  1. first = (EditText) findViewById(R.id.first);  
  2.         second = (EditText) findViewById(R.id.second);  

 

 

3. 把字符串装入Bundle 再放置于Intent 然后发送之

Java代码   收藏代码
  1. Intent i = new Intent(this, Activity2.class);  
  2.           
  3.         Bundle b = new Bundle();  
  4.           
  5.         b.putString("first", first.getText().toString());  
  6.         b.putString("second", second.getText().toString());  
  7.           
  8.         i.putExtras(b);  
  9.           
  10.         startActivityForResult(i,10);  

 

补充:

Java代码   收藏代码
  1. public void startActivityForResult (Intent intent, int requestCode)   
  2.   
  3. Intent intent:系统会根据这个确定目的Activity  
  4.   
  5. int requestCode:用于标识该Intent 回来后确定是不是想要的返回  

 

 

4. 注册View监听器

Java代码   收藏代码
  1. findViewById(R.id.start).setOnClickListener(new OnClickListener(){  
  2.             public void onClick(View v) {  
  3.                 // TODO Auto-generated method stub  
  4.                 sendCalculate();  
  5.             }  
  6.         });  

 

 

 

5. 构建 Activity2 的界面 把处理的结果返回

Java代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <Button    
  8.     android:id="@+id/reply"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     android:text="reply"  
  12.     />  
  13. </LinearLayout>  

 

 

6. 得到传入的Intent 以及传过来的2个字符串 并连接之

Java代码   收藏代码
  1. Intent i = this.getIntent();  
  2.           
  3.         Bundle b = i.getExtras();  
  4.           
  5.         String v1 = b.getString("first");  
  6.         String v2 = b.getString("second");  
  7.           
  8.         value = v1 + v2;  

 

 

7. 定义Intent 并存放返回结果 并返回之

Java代码   收藏代码
  1. Intent i = new Intent();  
  2.           
  3.         Bundle b = new Bundle();  
  4.         b.putString("CALCULATION", value);  
  5.           
  6.         i.putExtras(b);  
  7.           
  8.         this.setResult(RESULT_OK, i);  
  9.         this.finish();  

 

 

8. 事情完成了么? 当然没有 别忘了 Activity1 还要接收数据并显示之

Java代码   收藏代码
  1. protected void onActivityResult(int requestCode, int resultCode,  
  2.                                     Intent data){  
  3.         switch (resultCode){  
  4.         case RESULT_OK:  
  5.             Bundle b = data.getExtras();  
  6.               
  7.             String string = b.getString("CALCULATION");  
  8.               
  9.             updateText(string);  
  10.         }  
  11.     }  

 

 

现在才是真的结束了! 看看运行效果吧

 

1.  

 

 

2.



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值