Android Intent实现页面跳转的两种方法

作者:好雨天堂 时间:2022-03-13 22:27:10 

本文实例为大家分享了Intent实现页面跳转的两种的方法,供大家参考,具体内容如下

Android Intent实现页面跳转的两种方法

下图中两个不同的方法就是两种页面之间跳转的情况

1).跳转不返回数据

2).跳转返回数据

Android Intent实现页面跳转的两种方法

实例:

第一种启动方式(跳转不返回数据)

第二种启动方式(跳转返回数据)

先看第一种:

Android Intent实现页面跳转的两种方法Android Intent实现页面跳转的两种方法

点击第一种启动方式按钮会出现右边的图,然后再点击Button按钮返回左边的界面,TextView中的内容没变。

再看第二种启动方式

不同的是,点击Button按钮返回左边的界面,TextView中的内容变成了你好。

Android Intent实现页面跳转的两种方法Android Intent实现页面跳转的两种方法Android Intent实现页面跳转的两种方法

下面是所有代码

AndroidManifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.lenovo.intent">

<application
   android:allowBackup="true"
   android:icon="@mipmap/ic_launcher"
   android:label="@string/app_name"
   android:roundIcon="@mipmap/ic_launcher_round"
   android:supportsRtl="true"
   android:theme="@style/AppTheme">
   <activity android:name=".MainActivity">

</activity>
   <activity android:name="com.example.lenovo.intent.firstactivity">
     <intent-filter>
       <action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
     </intent-filter>
   </activity>
   <activity android:name="com.example.lenovo.intent.Secondactivity">

</activity>
 </application>

</manifest>

factivity


<?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"
 android:orientation="vertical"
 >

<Button
   android:id="@+id/bt1__first"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:text="第一种启动方式" />

<Button
   android:id="@+id/bt2__second"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:text="第二种启动方式" />

<TextView
   android:id="@+id/textView1"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:text="吧第二个页面回传的数据显示出来" />

</LinearLayout>

sactivity


<?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">

<Button
   android:id="@+id/button"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="Button" />
</LinearLayout>

firstactivity.java


package com.example.lenovo.intent;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

/**
* Created by lenovo on 2018/2/27.
*/

public class firstactivity extends Activity {
 private Button bt1;
 private Button bt2;
 private TextView tv;
 @Override
 protected void onCreate(Bundle savedInstanceState){
   super.onCreate(savedInstanceState);
   setContentView(R.layout.factivity);

/*
     通过点击bt1实现界面之间的跳转
     1.通过startActivity的方式来实现
     1>初始Intent(意图)
    */

bt1=(Button) findViewById(R.id.bt1__first);
   bt2=(Button)findViewById(R.id.bt2__second);
   tv=(TextView) findViewById(R.id.textView1);
   //给bt1添加点击事件
   bt1.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View view) {
       /*
       第一个参数:上下文对象this
       第二个参数:目标文件
        */
       Intent intent = new Intent(firstactivity.this,Secondactivity.class);
       startActivity(intent);

}
   });

/*
   2.通过startActivityForResult的方式来实现
    */
   //给bt2添加点击事件
   bt2.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View view) {
       Intent intent = new Intent(firstactivity.this,Secondactivity.class);

/*
       第一个参数:Intent对象
       第二个参数:请求的一个标识
        */
       startActivityForResult(intent,1);
     }
   });
 }

/*
 通过startActivityForResult的方式接受返回数据的方法
 requestCode:请求的标志,给每个页面发出请求的标志不一样,这样以后通过这个标志接受不同的数据
 resultCode:这个参数是setResult(int resultCode,Intent data)方法传来的,这个方法用在传来数据的那个页面
  */
 @Override
 protected void onActivityResult(int requestCode,int resultCode ,Intent data){
   super.onActivityResult(requestCode,resultCode,data);
   if(requestCode==1&&resultCode==2){//当请求码是1&&返回码是2进行下面操作
     String content=data.getStringExtra("data");
     tv.setText(content);
   }
 }
}

Secondactivity.java


package com.example.lenovo.intent;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

/**
* Created by lenovo on 2018/2/27.
*/

public class Secondactivity extends Activity {
private Button bt;
String content="你好";//想返回的内容
@Override
protected void onCreate( Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.sactivity);

/*
 第二个页面什么时候给第一个页面回传数据
 回传到第一个页面的实际上是一个Intent对象
  */
 bt=(Button) findViewById(R.id.button);
 bt.setOnClickListener(new View.OnClickListener() {
  @Override
  public void onClick(View view) {
   Intent data = new Intent();
   //name相当于一个key,content是返回的内容
   data.putExtra("data",content);
   //resultCode是返回码,用来确定是哪个页面传来的数据,这里设置返回码是2
   //这个页面传来数据,要用到下面这个方法setResult(int resultCode,Intent data)
   setResult(2,data);
   //结束当前页面
   finish();
  }
 });
}
}

来源:https://blog.csdn.net/weixin_38199770/article/details/79391259

标签:Android,Intent,页面跳转
0
投稿

猜你喜欢

  • SpringCloud 客户端Ribbon负载均衡的实现方法

    2023-03-22 16:42:43
  • Java基于深度优先遍历的随机迷宫生成算法

    2022-06-01 22:18:50
  • 深入理解C#之继承

    2022-02-25 07:25:44
  • Android package属性、package name和Application ID三者的联系及区别

    2022-08-18 12:57:09
  • MyBatisPlus3.x中使用代码生成器(全注释)

    2022-04-06 19:34:38
  • 基于C#动手实现网络服务器Web Server

    2023-01-21 20:13:28
  • java控制台输出图书馆管理系统

    2022-06-13 01:29:29
  • C# 常用协议实现模版及FixedSizeReceiveFilter示例(SuperSocket入门)

    2023-12-12 04:17:48
  • 浅谈Android ANR的信息收集过程

    2023-12-02 00:54:00
  • Netty分布式NioEventLoop任务队列执行源码分析

    2022-10-08 04:07:19
  • 解决Spring Security中AuthenticationEntryPoint不生效相关问题

    2022-11-29 06:53:09
  • SpringBoot MainApplication类文件的位置详解

    2023-10-28 16:21:12
  • Android编程实现仿美团或淘宝的多级分类菜单效果示例【附demo源码下载】

    2022-09-09 01:38:50
  • Base64编码解码原理及C#编程实例

    2022-05-07 03:58:53
  • Android Studio实现简易计算器设计

    2022-08-22 18:41:55
  • JAVA HashMap详细介绍和示例

    2023-04-07 00:17:43
  • C++实现幸运大抽奖(QT版)

    2021-09-15 21:32:00
  • 关于C#数强转会不会抛出异常详解

    2021-11-09 05:44:48
  • Log4j新手快速入门教程

    2023-06-01 11:59:44
  • Java实现将PDF转为图片格式的方法详解

    2022-08-21 07:03:36
  • asp之家 软件编程 m.aspxhome.com