Android页面之间进行数据回传

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android页面之间进行数据回传相关的知识,希望对你有一定的参考价值。

要求:页面1跳转到页面2,页面2再返回页面1同时返回数据

页面1添加如下代码:

 Intent intent = new Intent();
   intent.setClass(页面1.this, 页面2.class);
   Bundle bundle = new Bundle();
   intent.putExtras(bundle);//将Bundle添加到Intent,也可以在Bundle中添加相应数据传递给下个页面,例如:bundle.putString("abc", "bbb");
   startActivityForResult(intent, 0);// 跳转并要求返回值,0代表请求值(可以随便写)

 

页面2接收数据添加代码如下:

  

Intent intent = this.getIntent();
Bundle bundle = intent.getExtras();
bundle.putString("aaa", "back");//添加要返回给页面1的数据
intent.putExtras(bundle);
this.setResult(Activity.RESULT_OK, intent);//返回页面1
this.finish();

 

页面1接收返回数据:(需要重写onActivityResult)

技术分享
@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == 0 && resultCode == Activity.RESULT_OK) {
            Bundle bundle = data.getExtras();
            gameView.backString = bundle.getString("aaa");
             Toast.makeText(this, backString, Toast.LENGTH_SHORT).show();
        }

    }
技术分享

 

以上是关于Android页面之间进行数据回传的主要内容,如果未能解决你的问题,请参考以下文章

CAS登录后回传除了ticket参数以外的其他自定义参数

android入门:activity之间跳转,并且回传参数

如何在Android中的主/细分片段之间进行适当的导航?

片段中的Android webView显示空白页面

Android Reorder Fragment Backstack

Android中切换标签片段之间的延迟