Android编程中Intent实现页面跳转功能详解

 更新时间:2017年07月28日 11:12:25   作者:LoveJulin  
这篇文章主要介绍了Android编程中Intent实现页面跳转功能,结合实例形式分析了Android Intent实现页面跳转功能的具体步骤与相关注意事项,需要的朋友可以参考下

本文实例讲述了Android编程中Intent实现页面跳转功能。分享给大家供大家参考,具体如下:

安卓四大组件:Activity、Service、Broadcast Receiver、Content Provider

Intent实现页面之间跳转

1、无返回值

startActivity(intent)

2、有返回值

startActivityForResult(intent,requestCode);
onActivityResult(int requestCode,int resultCode,Intent data)
setResult(resultCode,data);

FActivity.java

package com.example.hello;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class FActivity extends Activity{
  private Button bt1;
  private Context mContext;
  private Button bt2;
  private TextView tv;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.factivity);
    /*
     * 通过点击bt1实现页面之间的跳转
     * 1.startActivity来实现跳转
     * 1>初始换Intent
     */
    mContext = this;
    bt1 = (Button) findViewById(R.id.button1_first);
    bt2 = (Button) findViewById(R.id.button2_second);
    tv = (TextView) findViewById(R.id.textView1);
    //注册点击事件
    bt1.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        /**
         * 第一个参数,上下文对象this
         * 第二个参数,目标文件
         */
        Intent intent = new Intent(mContext, SActivity.class);
        startActivity(intent);
      }
    });
    /*
     * 通过startActivityForResult
     * 第二个参数是请求的一个标识
     */
    bt2.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        Intent intent = new Intent(mContext, SActivity.class);
        startActivityForResult(intent, 1);
      }
    });
  }
  /*
   * 通过startActivityForResult 跳转,接受返回数据的方法
   * requestCode:请求标识
   * resultCode:第二个页面返回的标识
   * data 第二个页面回传的数据
   */
  @Override
  protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == 1 && resultCode == 2) {
      String content = data.getStringExtra("data");
      tv.setText(content);
    }
  }
}

factivity.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"
  android:orientation="vertical" >
  <Button
    android:id="@+id/button1_first"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="第一种启动方式" />
  <Button
    android:id="@+id/button2_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.java

package com.example.hello;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class SActivity extends Activity{
  private Button bt;
  private String content = "你好";
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.sactivity);
    /*
     * 第二个页面什么时候回传数据给第一个页面
     * 回传到第一个页面的,实际上是一个Intent对象
     */
    bt = (Button) findViewById(R.id.button1);
    bt.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        Intent data = new Intent();
        data.putExtra("data", content);
        setResult(2, data);
        //结束当前页面
        finish();
      }
    });
  }
}

sactivity.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"
  android:orientation="vertical" >
  <Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Button" />
</LinearLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.hello"
  android:versionCode="1"
  android:versionName="1.0" >
  <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="21" />
  <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
      android:name=".MainActivity"
      android:label="@string/app_name" >
    </activity>
    <activity
      android:name=".FActivity"
      android:label="@string/app_name" >
      <!-- 首启动项 -->
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
    <activity
      android:name=".SActivity"
      android:label="@string/app_name" >
    </activity>
  </application>
</manifest>

用浏览器打开网页

Uri uri = Uri.parse("http://www.baidu.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android图形与图像处理技巧总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Android编程开发之Spinner控件用法实例分析

    Android编程开发之Spinner控件用法实例分析

    这篇文章主要介绍了Android编程开发之Spinner控件用法,结合实例形式较为详细的分析了下拉列表Spinner的具体使用技巧,需要的朋友可以参考下
    2015-12-12
  • Android学习之AppWidget笔记分享

    Android学习之AppWidget笔记分享

    这篇文章主要为大家详细介绍了Android学习笔记之AppWidget的相关资料,感兴趣的小伙伴们可以参考一下
    2016-08-08
  • Flutter 实现整个App变为灰色的方法示例

    Flutter 实现整个App变为灰色的方法示例

    这篇文章主要介绍了Flutter 实现整个App变为灰色的方法示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-04-04
  • Android自定义软键盘的步骤记录

    Android自定义软键盘的步骤记录

    Android软键盘这块从我入职到现在,是一个一直纠缠我的问题,这篇文章主要给大家介绍了关于Android自定义软键盘的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下
    2021-08-08
  • Android Intent基础用法及作用详解

    Android Intent基础用法及作用详解

    Intent是一种重要的消息传递对象,用于在不同组件(如活动(Activity)、服务(Service)、广播接收器(BroadcastReceiver)等)之间进行通信和交互,本文介绍Android Intent基础用法及作用,感兴趣的朋友一起看看吧
    2024-07-07
  • Android使用DrawerLayout仿QQ6.0双侧滑菜单

    Android使用DrawerLayout仿QQ6.0双侧滑菜单

    这篇文章主要为大家详细介绍了Android使用DrawerLayout仿QQ6.0双侧滑菜单,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-08-08
  • Android实现通讯录功能

    Android实现通讯录功能

    这篇文章主要为大家详细介绍了Android实现通讯录功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-03-03
  • Android自定义ViewGroup实现淘宝商品详情页

    Android自定义ViewGroup实现淘宝商品详情页

    这篇文章主要为大家详细介绍了Android自定义ViewGroup实现淘宝商品详情页,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-10-10
  • Android操作存放在assets文件夹下SQLite数据库的方法

    Android操作存放在assets文件夹下SQLite数据库的方法

    这篇文章主要介绍了Android操作存放在assets文件夹下SQLite数据库的方法,实例分析了Android操作SQLite数据库的相关技巧,需要的朋友可以参考下
    2015-06-06
  • Android NDK开发(C语言--动态内存分配)

    Android NDK开发(C语言--动态内存分配)

    这篇文章主要介绍了Android NDK开发 C语言--动态内存分配
    2021-12-12

最新评论