欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android startActivityForResult的使用方法介绍

程序员文章站 2023-11-16 17:47:10
activity 跳转 都知道用startactivity(intent)但是如果下面情况呢?activity1 跳转到 activity2  但是还需要在act...

activity 跳转 都知道用startactivity(intent)
但是如果下面情况呢?
activity1 跳转到 activity2  但是还需要在activity2 再回到 activity1呢? 可能有人说: 那我在activity2  再使用 startactivity() 不就可以了 是的 但是 startactivityforresult() 能够直接完成这项工作
[示例]
activity1: 有2个edittext 用于接收用户输入的2个字符串 要求把这2个字符串连接起来 我现在把连接的工作交给 activity2 来做 并且把连接好后的字符串再返回给 activity1 并由它负责显示
[代码]
1. 构建 activity1 所需的界面
java代码

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>  
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    >  
<edittext    
    android:id="@+id/first" 
    android:layout_width="fill_parent"   
    android:layout_height="wrap_content"   
    />  
<edittext    
    android:id="@+id/second" 
    android:layout_width="fill_parent"   
    android:layout_height="wrap_content"   
    />  
<button    
    android:id="@+id/start" 
    android:layout_width="fill_parent"   
    android:layout_height="wrap_content"   
    android:text="start" 
    />  
<textview    
    android:id="@+id/text" 
    android:layout_width="fill_parent"   
    android:layout_height="wrap_content"   
    android:text="...is waiting" 
    />  
</linearlayout> 


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

复制代码 代码如下:

first = (edittext) findviewbyid(r.id.first);  
        second = (edittext) findviewbyid(r.id.second); 


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

复制代码 代码如下:

intent i = new intent(this, activity2.class);  

        bundle b = new bundle();  

        b.putstring("first", first.gettext().tostring());  
        b.putstring("second", second.gettext().tostring());  

        i.putextras(b);  

        startactivityforresult(i,10); 

补充:

复制代码 代码如下:

public void startactivityforresult (intent intent, int requestcode)   

intent intent:系统会根据这个确定目的activity  

int requestcode:用于标识该intent 回来后确定是不是想要的返回 


4. 注册view监听器

复制代码 代码如下:

findviewbyid(r.id.start).setonclicklistener(new onclicklistener(){  
            public void onclick(view v) {  
                // todo auto-generated method stub  
                sendcalculate();  
            }  
        }); 


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

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>  
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    >  
<button    
    android:id="@+id/reply" 
    android:layout_width="fill_parent"   
    android:layout_height="wrap_content"   
    android:text="reply" 
    />  
</linearlayout> 


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

复制代码 代码如下:

intent i = this.getintent();  

        bundle b = i.getextras();  

        string v1 = b.getstring("first");  
        string v2 = b.getstring("second");  

        value = v1 + v2; 


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

复制代码 代码如下:

intent i = new intent();  

        bundle b = new bundle();  
        b.putstring("calculation", value);  

        i.putextras(b);  

        this.setresult(result_ok, i);  
        this.finish(); 


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

复制代码 代码如下:

protected void onactivityresult(int requestcode, int resultcode,  
                                    intent data){  
        switch (resultcode){  
        case result_ok:  
            bundle b = data.getextras();  

            string string = b.getstring("calculation");  

            updatetext(string);  
        }  
    }