当前位置: 首页 > 编程笔记 >

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

张鹏云
2023-03-14
本文向大家介绍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 Intent实现页面跳转的两种方法,包括了Android Intent实现页面跳转的两种方法的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了Intent实现页面跳转的两种的方法,供大家参考,具体内容如下 下图中两个不同的方法就是两种页面之间跳转的情况 1).跳转不返回数据 2).跳转返回数据 实例: 第一种启动方式(跳转不返回数据) 第二种启动方式(跳转

  • 本文向大家介绍Android Intent实现页面跳转的方法示例,包括了Android Intent实现页面跳转的方法示例的使用技巧和注意事项,需要的朋友参考一下 应朋友们反馈的Android基础薄弱的问题,决定出一套Android基础教程,帮助大家复习,巩固Android基础,今天要讲的是Android中的Intent实现Android间的页面跳转。 增加Acrivity页面时,首先需要在Mai

  • 本文向大家介绍python wxpython 实现界面跳转功能,包括了python wxpython 实现界面跳转功能的使用技巧和注意事项,需要的朋友参考一下 用wxpython设计界面时可能会出现界面嵌套的情况 这样就需要进行界面的跳转 但是貌似wxpython没提供界面跳转的方式(也可能是我菜。。。) 所以就需要借助threading模块 主要思想: 注:该代码为源码的一部分,经过删减可能会导

  • 本文向大家介绍Android实现页面翻转和自动翻转功能,包括了Android实现页面翻转和自动翻转功能的使用技巧和注意事项,需要的朋友参考一下 1. 效果图,本功能用了ViewFlipper和GestureDetector (手势检测器)两个关键技术点: 2. 先写好布局文件,这里用到了ViewFlipper类,用于切换视图,毕竟ViewFlipper见得少,先介绍一下。 在xml布局中的方法介绍

  • 本文向大家介绍Android编程实现分页加载ListView功能示例,包括了Android编程实现分页加载ListView功能示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程实现分页加载ListView功能。分享给大家供大家参考,具体如下: 我们第一个应该看见的就是声明了很多私有的变量,因为这样设置就可以变成只能自己来调用了,这样和其它的不发生冲突。其中我们设置了开始

  • 本文向大家介绍Android开发实现的Intent跳转工具类实例,包括了Android开发实现的Intent跳转工具类实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android开发实现的Intent跳转工具类。分享给大家供大家参考,具体如下: 一、概述 Intent的中文意思是“意图,意向”,在Android中提供了Intent机制来协助应用间的交互与通讯,Intent负责对应用中