Android——关于Activity跳转的返回(无返回值和有返回值)——总(Test)
Posted Chen_s
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android——关于Activity跳转的返回(无返回值和有返回值)——总(Test)相关的知识,希望对你有一定的参考价值。
Main_layout.xml
<?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"> <EditText android:layout_width="300dp" android:layout_height="wrap_content" android:id="@+id/myet" android:textSize="40dp" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="普通方式传到第二页" android:textSize="30dp" android:onClick="onclick" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="带返回方式传到第二页" android:textSize="30dp" android:onClick="onclick3" /> </LinearLayout>
MainActivity.java
package com.example.chenshuai.test321; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View; import android.widget.EditText; import android.widget.Toast; /** * Created by chenshuai on 2016/3/21. */ public class MainActivity extends AppCompatActivity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main_layout); } //普通方式 public void onclick(View view) { Log.e("tag","按钮的点击监听触发的"); //静态方法 //不许要实例化,直接用类名调用 //构建了Toast //方法链 Toast.makeText(this,"按钮的点击监听触发的",Toast.LENGTH_LONG).show(); //Toast.makeText(this,"按钮的点击监听触发的",Toast.LENGTH_SHORT).show(); /*Toast ta = Toast.makeText(this,"按钮的点击监听触发的",Toast.LENGTH_LONG); ta.show();*/ //取得要传递的信息 //获取View实例 EditText myet = (EditText)findViewById(R.id.myet); String str = myet.getText().toString(); Intent intent = new Intent(this,Activity2.class); //存储内容 //Extra 扩展 实际上是一个HashMap,进行限制 putExtra 是一个bundle intent.putExtra("myet",str); //启动,不需要返回值 startActivity(intent); } //带返回值的方式 public void onclick3(View view) { EditText myet = (EditText)findViewById(R.id.myet); String str = myet.getText().toString(); Intent intent = new Intent(this,Activity2.class); //存储内容 //Extra 扩展 实际上是一个HashMap,进行限制 putExtra 是一个bundle intent.putExtra("myet",str); //启动方式,有返回值 //第一个参数 intent //第二个参数 requestCode 请求码 startActivityForResult(intent,1); } //处理返回信息的监听(回调方法) //监听所有返回信息的 //必须要有requestCode区分由哪个请求返回的 @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == 1) { if (resultCode == RESULT_OK) { //获取返回信息 String str = data.getExtras().getString("mytv"); //显示 EditText myett = (EditText)findViewById(R.id.myet); myett.setText(str); //Toast.makeText(this,"返回信息成功",Toast.LENGTH_LONG); } else { Toast.makeText(this,"返回信息有问题",Toast.LENGTH_LONG); } } } }
activity_2.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.chenshuai.test321.Activity2"> <EditText android:layout_width="200dp" android:layout_height="wrap_content" android:textSize="40dp" android:id="@+id/mytv" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="普通返回" android:textSize="40dp" android:onClick="onclick1" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="带返回值返回" android:textSize="40dp" android:onClick="onclick2" /> </LinearLayout>
Activity2.java
package com.example.chenshuai.test321; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.EditText; public class Activity2 extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_2); //接受信息 //获取意图 //传递过来的Intent Intent in = getIntent(); String s = in.getExtras().getString("myet"); EditText mytv = (EditText)findViewById(R.id.mytv); mytv.setText(s); } //普通返回 public void onclick1(View view) { //关闭当前Activity finish(); } public void onclick2(View view) { //存储返回数据 也要用Intent EditText mytv = (EditText)findViewById(R.id.mytv); Intent in = new Intent(); //设置返回数据 //先设置ResultCode,再设置存储数据的意图 setResult(RESULT_OK,in.putExtra("mytv",mytv.getText().toString())); finish(); } }
AndroidMinifest.xml
package com.example.chenshuai.test321;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
public class Activity2 extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_2);
//接受信息
//获取意图
//传递过来的Intent
Intent in = getIntent();
String s = in.getExtras().getString("myet");
EditText mytv = (EditText)findViewById(R.id.mytv);
mytv.setText(s);
}
//普通返回
public void onclick1(View view)
{
//关闭当前Activity
finish();
}
public void onclick2(View view)
{
//存储返回数据 也要用Intent
EditText mytv = (EditText)findViewById(R.id.mytv);
Intent in = new Intent();
//设置返回数据
//先设置ResultCode,再设置存储数据的意图
setResult(RESULT_OK,in.putExtra("mytv",mytv.getText().toString()));
finish();
}
}
以上是关于Android——关于Activity跳转的返回(无返回值和有返回值)——总(Test)的主要内容,如果未能解决你的问题,请参考以下文章
Android——关于Activity跳转的返回(无返回值和有返回值)——有返回值
Android——关于Activity跳转的返回(无返回值和有返回值)——有返回值
关于android上面的Activity跳转传送数据的问题,请高手来指教
android:startActivityForResult方法的Activity跳转