Android实现页面跳转的全过程记录

目录
  • 1、启动新Activty
    • 1.1、功能分析
    • 1.2、开发视图布局
    • 1.3、按钮事件响应
    • 1.4、测试结果
  • 2、启动其他App
    • 2.1、功能分析
    • 2.2、开发视图布局
    • 2.3、按钮事件响应
    • 2.4、测试结果
  • 总结

1、启动新Activty

1.1、功能分析

  • App功能

    • 在第一个Activity输入消息
    • 点击第一个Activity的发送按钮
    • 发送消息到第二个Activity
    • 第二个Activity显示收到的消息
  • App结构(2个Activity+2个Layout) :
    • 打开App时,启动CreateMessageActivty
      加载activity_create_message.xml作为布局
    • 用户点击按钮启动ReceiveMessageActivty
      加载activity _receive_message.xml作为布局

1.2、开发视图布局

activity_create_message.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".CreateMessageActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <EditText
            android:id="@+id/input"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:hint="@string/hint"
            android:inputType="textPersonName"
            android:textSize="30sp"/>

        <Button
            android:id="@+id/button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="onSendMessage"
            android:text="@string/send"
            android:textSize="30sp"
            />

    </LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

activity _receive_message.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_constraintRight_toRightOf="parent"
    tools:context=".ReceiveMessageActivity">

    <TextView
        android:id="@+id/output"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="2nd Activity"
        android:textSize="34sp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constr

string.xml

<resources>
    <string name="app_name">Messager</string>
    <string name="send">Send Message</string>
    <string name="hint">Enter a message</string>
    <string name="choser">Send Message via ...</string>
</resources>

1.3、按钮事件响应

CreateMessageActivty类:发送消息

public class CreateMessageActivity extends AppCompatActivity {

    //定义常量,作为消息的key
    public static final String MESSAGE_KEY="szst.it.ping.messager";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_create_message);
    }

    public void onSendMessage(View Button){
        //获得编辑框引用
        EditText editText = findViewById(R.id.input);
        //取出编辑框文字
        String message = editText.getText().toString();

        //Intent是Android中的信使,新建Intent打开,设置收件Activity为ReceiveMessageActivity
        Intent intent = new Intent(this,ReceiveMessageActivity.class) ;
        //在intent中附加消息
        intent.putExtra(MESSAGE_KEY,message);
        //向Android发出请求
        startActivity(intent);

    }
}

ReceiveMessageActivty类:接收消息

public class ReceiveMessageActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_receive_message);

        //获得intent的引用
        Intent intent = getIntent();

        //根据key取出value
        String message = intent.getStringExtra(CreateMessageActivity.MESSAGE_KEY);

        //获得文本框内容,设置文字
        TextView textView = findViewById(R.id.output);
        textView.setText(message);
    }
}

1.4、测试结果

启动界面

输入消息“123”并点击按钮发送,接收界面如下

2、启动其他App

2.1、功能分析

  • App功能

    • 在第一个Activity输入消息
    • 点击第一个Activity的发送按钮
    • 发送消息到其他App
    • 其他App显示收到的消息
  • App结构(1个Activity+1个Layout) :
    • 打开App时,启动CreateMessageActivty
      加载activity_create_message.xml作为布局
    • 用户点击按钮启动选择启动满足条件的App

2.2、开发视图布局

  • activity_create_message.xml

    • 同1.2中的activity_create_message.xml

2.3、按钮事件响应

CreateMessageActivty类:发送消息

public class CreateMessageActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_create_message);
    }

    public void onSendMessage(View Button){
        //获得编辑框引用
        EditText editText = findViewById(R.id.input);
        //取出编辑框文字
        String message = editText.getText().toString();

        //使用new Intent(Intent.ACTION_SEND)替换new Intent(this, ReceiveMessageActivity.class),不知道其它App中的类名
        Intent intent = new Intent(Intent.ACTION_SEND);
        //设置消息类型为纯文本,系统不会对消息进行处理
        intent.setType("text/plain");
        //向Intent添加附加信息
        intent.putExtra(Intent.EXTRA_TEXT,message);

        //自定义选择对话框
        String chooserTitle = getString(R.string.choser);
        Intent chosenIntent = Intent.createChooser(intent, chooserTitle);

        startActivity(chosenIntent) ;
    }
}

2.4、测试结果

启动界面同1.4

输入消息“123”并点击按钮发送,选择要发送的app(Messaging)

发送附加消息到111

发送成功

总结

到此这篇关于Android实现页面跳的文章就介绍到这了,更多相关Android实现页面跳转内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • Android Intent实现页面跳转的方法示例

    应朋友们反馈的Android基础薄弱的问题,决定出一套Android基础教程,帮助大家复习,巩固Android基础,今天要讲的是Android中的Intent实现Android间的页面跳转. 增加Acrivity页面时,首先需要在MainActivity中对页面注册,比如 新建被跳转的页面OtherActivity,其对应的xml文件如下 activity_other <?xml version="1.0" encoding="utf-8"?> <

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

    本文实例为大家分享了Intent实现页面跳转的两种的方法,供大家参考,具体内容如下 下图中两个不同的方法就是两种页面之间跳转的情况 1).跳转不返回数据 2).跳转返回数据 实例: 第一种启动方式(跳转不返回数据) 第二种启动方式(跳转返回数据) 先看第一种: 点击第一种启动方式按钮会出现右边的图,然后再点击Button按钮返回左边的界面,TextView中的内容没变. 再看第二种启动方式 不同的是,点击Button按钮返回左边的界面,TextView中的内容变成了你好. 下面是所有代码 And

  • Android 实现页面跳转

    android使用Intent来实现页面跳转,Intent通过startActivity(Intent intent)或startActivityForResult(Intent intent,int resquestCode)方法来启动Activity,在新建Intent对象时来指定从A页面跳到B页面, 比如: Intent i = new Intent(A.this,B.class);这就表示从A页面跳到B页面, Intent对象通过调用putExtra方法来传递页面跳转时所需要传递的信息

  • Android启动页面定时跳转的三种方法

    从我所做的项目来看,几乎都少不了开始页面,启动页面的作用能够打广告.发公告.做缓存处理.更新数据等等!Android实现开始页面的跳转,就是打开一个Android手机APP的欢迎界面后跳转到指定界面,下面就让我简单介绍下比较常用的开始页面的跳转方法吧. 一.在onCreate里设置个Timer,然后建立Intent指向你要调用的Activity.设置Timer 任意秒后执行startActivity即可!(Timer是一种定时器工具,用来在一个后台线程计划执行指定任务,它可以计划执行一个任务一次

  • Android实现页面跳转的全过程记录

    目录 1.启动新Activty 1.1.功能分析 1.2.开发视图布局 1.3.按钮事件响应 1.4.测试结果 2.启动其他App 2.1.功能分析 2.2.开发视图布局 2.3.按钮事件响应 2.4.测试结果 总结 1.启动新Activty 1.1.功能分析 App功能 在第一个Activity输入消息 点击第一个Activity的发送按钮 发送消息到第二个Activity 第二个Activity显示收到的消息 App结构(2个Activity+2个Layout) : 打开App时,启动Cre

  • Android实现页面跳转

    本文实例为大家分享了Android实现页面跳转的具体代码,供大家参考,具体内容如下 一. Android实现页面跳转有两种方式,一种为.MainActivity跳转:第二种是Relatelayout布局跳转,首先看第一种方式 1. MainActivity区域设置 public class MainActivity extends AppCompatActivity {     @Override     protected void onCreate(Bundle savedInstanceS

  • Android Activity活动页面跳转与页面传值

    目录 概述 Intent 显示Intent启动 隐式Intent启动 启动其他程序 网页浏览 拨号界面 根据包名打开软件 根据类名打开界面 startActivityForResult 主页面 跳转界面 页面传值 Intent.putExtra 传值 借助 Bundle 传值 概述 Android开发少不了的就是页面之间的跳转,或者想要呼叫打开其他应用等 Intent Intent是Android程序中各组件之间进行交互的一种重要方式,不仅可以指明当前组件想要执行的运作,还可以在不同组件之间传递

  • vue跳转后不记录历史记录的问题

    目录 vue跳转后不记录历史记录 vue-router回退不记录历史 场景说明 处理方案 其他api跳转 vue跳转后不记录历史记录 vue路由跳转一般情况下是使用push,  this.$router.push({                 path: "/testTeam/testTeam",                              }); 若是特殊需求,页面跳转后不记录到历史记录中,将push改为replace即可 this.$router.replace

  • Android Activity中使用Intent实现页面跳转与参数传递的方法

    本文实例讲述了Android Activity中使用Intent实现页面跳转与参数传递的方法.分享给大家供大家参考,具体如下: 新建一个FirstAvtivity.java package com.zhuguangwei; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.O

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

    本文实例讲述了Android编程中Intent实现页面跳转功能.分享给大家供大家参考,具体如下: 安卓四大组件:Activity.Service.Broadcast Receiver.Content Provider Intent实现页面之间跳转 1.无返回值 startActivity(intent) 2.有返回值 startActivityForResult(intent,requestCode); onActivityResult(int requestCode,int resultCod

  • Android使用Intent显示实现页面跳转

    在学习安卓的最初过程中我们学的都是最基本的一个活动,只有一个活动的应用也太简单了吧,没错我们的最求应该更高点,不管你创建多少个活动,接下里我们介绍的这种方法能解决我们在创建活动之间的跳转. 使用显示Intent 刚入门学习Android的小伙伴们已经能很娴熟的使用Android studio 创建一个项目了,接下来我把我自己创建的目录先展示下 首先创建一个名叫TestIntent的project然后在main--java下面创建了2个类分别是FirstActivity和MainActivity,

随机推荐