面试阿里P7:利用startActivityForResult如何返回数据到前一个Activity?(附源码+解析)

img

在Android里面,从一个Activity跳转到另一个Activity、再返回,前一个Activity默认是能够保存数据和状态的。但这次我想通过利用startActivityForResult达到相同的目的,虽然看起来变复杂了,但可以探索下startActivityForResult背后的原理和使用注意事项。

要实现的功能如下:
从Activity A将数据传到Activity B,再从Activity B中获取数据后,再传回Activity A。在Activity B中添加一个“回到上一页”的Button,返回到Activity A之后,需要保留之前输入的相关信息,我们用startActivityForResult来拉起Activity B,这样,Activity A就会有一个等待Activity B的返回。

具体步骤如下:

  1. 在Activity A中有一个Button,点击Button后,获取要传到Activity B的数据,将数据封装到Bundle中,再调用startActivityForResult将数据传到Activity B
  2. Activity A 重写onActivityResult函数,判断requestCode和resultCode是否是我们预期的结果,如果是,那么从Bundle中获取数据,重新显示在Activity A中
  3. 在Activity B中获取Activity A传过去的Intent对象,并取出Bundle对象,再从Bundle中取出数据字段,显示在当前页面
  4. Activity B中也有一个Button,点击Button后,调用setResult传回结果,并关闭当前页面。因此,看起来的效果就是回到了Activity A

源码如下:
1、Activity A的实现:

public class ExampleActivity extends Activity {

    private EditText mEditText;
    private RadioButton mRb1;
    private RadioButton mRb2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_page_layout);

        Button button = findViewById(R.id.buttonGoToLayout2);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mEditText = findViewById(R.id.editText);
                // 获取输入的身高
                double height = Double.parseDouble(mEditText.getText().toString());

                // 获取性别
                String gender = "";
                mRb1 = findViewById(R.id.radioButtonMale);
                mRb2 = findViewById(R.id.radioButtonFemale);
                if (mRb1.isChecked()) {
                    gender = "M";
                } else {
                    gender = "F";
                }

                Intent intent = new Intent(ExampleActivity.this, SecondActivity.class);
                // 将数据传入第二个Activity
                Bundle bundle = new Bundle();
                bundle.putDouble("height", height);
                bundle.putString("gender", gender);
                intent.putExtras(bundle);

                startActivityForResult(intent, 0);
            }
        });
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (resultCode == RESULT_OK && requestCode == 0) {
            Bundle bundle = data.getExtras();
            double height = bundle.getDouble("height");
            String gender = bundle.getString("gender");

            mEditText.setText("" + height);
            if (gender.equals("M")) {
                mRb1.setChecked(true);
            } else {
                mRb2.setChecked(true);
            }
        }
    }
}
复制代码

2、布局文件main_page_layout.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center">

        <TextView
                android:id="@+id/textView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="计算标准体重"
                android:paddingTop="20dp"
                android:paddingLeft="20dp"
                android:textSize="30sp"/>

    <TextView
            android:text="性别:"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:id="@+id/textView3"
            android:layout_alignStart="@id/textView1" android:layout_marginTop="38dp"
            android:layout_below="@id/textView1" android:layout_marginStart="46dp"/>

    <TextView
            android:text="身高:"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:id="@+id/textView4"
            android:layout_alignStart="@id/textView1" android:layout_marginStart="46dp"
            android:layout_below="@id/textView3" android:layout_marginTop="29dp"/>

    <EditText android:layout_width="wrap_content" android:layout_height="wrap_content"
              android:id="@+id/editText"
              android:layout_toEndOf="@id/textView4"
              android:layout_marginStart="36dp"
              android:autofillHints="@string/app_name"
              android:hint="0"
              android:layout_alignBaseline="@id/textView4"/>

    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
              android:text="厘米"
              android:layout_alignBaseline="@id/editText"
              android:layout_toRightOf="@id/editText"
              android:layout_marginStart="10dp" />

    <RadioButton
            android:layout_below="@id/textView1"
            android:id="@+id/radioButtonMale"
            android:text="男"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignStart="@id/textView1" android:layout_marginTop="30dp"
            android:layout_marginStart="113dp"/>

    <RadioButton
            android:id="@+id/radioButtonFemale"
            android:text="女"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/textView1"
            android:layout_toEndOf="@id/radioButtonMale"
            android:layout_marginLeft="15dp" android:layout_marginTop="30dp" android:layout_marginStart="49dp"/>

    <Button
            android:text="计算"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/buttonGoToLayout2"
            android:layout_marginTop="90dp"
            android:layout_below="@id/radioButtonMale"
            android:layout_alignStart="@id/textView1" android:layout_marginStart="92dp"/>
</RelativeLayout>
复制代码

3、Activity B的实现:

public class SecondActivity extends Activity {
    private Intent mIntent;
    private Bundle mBundle;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second_layout);

        mIntent = getIntent();
        mBundle = mIntent.getExtras();

        // 记得判空
        if (mBundle == null) {
            return;
        }

        // 获取Bundle中的数据
        double height = mBundle.getDouble("height");
        String gender = mBundle.getString("gender");

        // 判断性别
        String genderText = "";
        if (gender.equals("M")) {
            genderText = "男性";
        } else {
            genderText = "女性";
        }

        // 获取标准体重
        String weight = getWeight(gender, height);

        // 设置需要显示的文字内容
        TextView textView = findViewById(R.id.textView2);
        textView.setText("你是一位" + genderText + "\n你的身高是" + height + "厘米\n你的标准体重是" + weight + "公斤");

        Button button = findViewById(R.id.buttonGoBack);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // 设置结果,并关闭页面
                setResult(RESULT_OK, mIntent);
                finish();
            }
        });
    }

    // 四舍五入格式化
    private String format(double num) {
        NumberFormat formatter = new DecimalFormat("0.00");
        return formatter.format(num);
    }

    // 计算标准体重的方法
    private String getWeight(String gender, double height) {
        String weight = "";
        if (gender.equals("M")) {
            weight = format((height - 80) * 0.7);
        } else {
            weight = format((height - 70) * 0.6);
        }
        return weight;
    }
}
复制代码

4、Activity B的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
              android:layout_height="match_parent">
    <TextView
            android:text="This is the second layout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/textView2"
            android:paddingTop="30dp"
            android:paddingStart="50dp"/>
    <Button android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:id="@+id/buttonGoBack"
            android:text="回到上一页"
            android:layout_alignStart="@id/textView2"
            android:layout_below="@id/textView2"
            android:layout_marginTop="54dp" android:layout_marginStart="52dp"/>
</RelativeLayout>
复制代码

不过这里有3个地方需要注意:

  1. startActivityForResult的第二个参数requestCode传的是0,那么我们分别看下传递的值小于0和大于0是什么结果:
    (1)传一个小于0的值,比如-1:等同于调用 startActivity,onActivityResult不会被调用
    (2)传一个大于0的值,比如1:效果等同于传0,onActivityResult的第一个参数正是我们通过startActivityForResult传递的requestCode

  2. onActivityResult的第二个参数resultCode:它是第二个activity通过setResult返回的,常用的取值有2个:RESULT_CANCELED、RESULT_OK
    (1)RESULT_CANCELED:Activity B拉起失败,比如crash
    (2)RESULT_OK:Activity B操作成功后的返回值

    还有一个不太常用的取值:RESULT_FIRST_USER,Android源码对这个取值的定义是“user-defined activity results”(用户自定义的),我在源码中全局搜索了下,用的地方不多,挑了一两个使用的地方:

2.1 PackageInstaller下面的InstallFailed.java(安装apk失败的相关页面)

protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        int statusCode = getIntent().getIntExtra(PackageInstaller.EXTRA_STATUS,
                PackageInstaller.STATUS_FAILURE);
        if (getIntent().getBooleanExtra(Intent.EXTRA_RETURN_RESULT, false)) {
            // …….. 
            setResult(Activity.RESULT_FIRST_USER, result);
            finish();
        }
复制代码

2.2 PackageInstaller下面的InstallStaging.java

private void showError() {
        (new ErrorDialog()).showAllowingStateLoss(getFragmentManager(), "error");
        // ……. 
        setResult(RESULT_FIRST_USER, result);
}
复制代码
PackageInstaller下面的UninstallerActivity.java(卸载apk的相关页面):在onCreate方法里面有多处设置为RESULT_FIRST_USER。

因此,我的理解是业务自身在一些错误或无效的场景下使用,由业务自己定义。

  1. 如果启动Activity B时设置了new_task启动模式,进入Activity B后,Activity A会立即回调onActivityResult,而且resultCode是0;从Activity B setResult返回后,不再有onActivityResult的回调

文末

欢迎关注我的简书,分享Android干货,交流Android技术。
对文章有何见解,或者有何技术问题,都可以在评论区一起留言讨论,我会虔诚为你解答。
最后,如果你想知道更多Android的知识或需要其他资料我这里均免费分享,只需私信666找我获取,也可以点赞加评论支持哦!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容