Android实现界面跳转功能

 更新时间:2020年09月23日 14:09:34   作者:Red&&Black  
这篇文章主要为大家详细介绍了Android实现界面跳转功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android实现界面跳转的具体代码,供大家参考,具体内容如下

布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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=".MainActivity">

 <!-- 线性布局 、垂直排列 -->
 <LinearLayout
   android:orientation="vertical"
   android:layout_width="match_parent"
   android:layout_height="match_parent">
  <!-- 编辑框 
 @string/hint 表示 res/values/strings.xml下名为hint的标签
    strings.xml用于字符串资源及其格式化
  -->
  <EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPersonName"
    android:text="Name"
    android:ems="10"
    android:id="@+id/input" android:hint="@string/hint"/>
  <Button
    android:text="@string/send"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" android:id="@+id/button2" android:onClick="send"/>
 </LinearLayout>


</android.support.constraint.ConstraintLayout>

或者点击text左边的design进行布局

响应onclick

package com.android02;

import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.EditText;

public class MainActivity extends AppCompatActivity {

 //定义常量,作为消息的key
 public final static String MESSAGE_KEY="com.android2";

 @Override
 protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);
  /**
   * 指定布局(res下的activity_main.xml编译成r.java)
   */
  setContentView(R.layout.activity_main);
 }

 /**
  *响应onclick事件
  */
 public void send(View button){

  //以id获取EditText
  EditText editText = findViewById(R.id.input);

  //获取编辑框文字
  String message = editText.getText().toString();

 //activity、service和broadcast receiver通过Intent进行交互
  Intent intent = new Intent(this,ReceiveActivity.class);

  //在intent中附加信息
  intent.putExtra(MESSAGE_KEY,message);
  startActivity(intent);
 }

}

创建ReceiveActivity

右击java>>new>>Activity>>Empty Activity
然后进入创建页面指定Activity的名字…
然后它在AndroidManifest.xml中自动注册

package com.android02;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class ReceiveActivity extends AppCompatActivity {

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

  //获取intent引用
  Intent intent = getIntent();

  //以MESSAGE_KEY获取获取编辑框文字
  String message = intent.getStringExtra(MainActivity.MESSAGE_KEY);

  //以id获取TextView
  TextView textView = findViewById(R.id.output);

  //显示message
  textView.setText(message);

 }
}

测试

通过AVD manager 创建虚拟手机或使用真机测试

完成。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android端代码量非常小的分页加载库

    Android端代码量非常小的分页加载库

    这篇文章主要给大家介绍了关于Android端代码量非常小的分页加载库的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-03-03
  • android九宫格可分页加载控件使用详解

    android九宫格可分页加载控件使用详解

    这篇文章主要介绍了android九宫格可分页加载控件的使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-02-02
  • Android加载Gif动画实现代码

    Android加载Gif动画实现代码

    这篇文章主要为大家详细介绍了Android加载Gif动画实现代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-10-10
  • Android仿抖音主页效果实现代码

    Android仿抖音主页效果实现代码

    这篇文章主要介绍了Android仿抖音主页效果实现,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-12-12
  • Android实现检查并下载APK更新、安装APK及获取网络信息的方法

    Android实现检查并下载APK更新、安装APK及获取网络信息的方法

    这篇文章主要介绍了Android实现检查并下载APK更新、安装APK及获取网络信息的方法,很实用的功能,需要的朋友可以参考下
    2014-07-07
  • Android编程实现滑动按钮功能详解

    Android编程实现滑动按钮功能详解

    这篇文章主要介绍了Android编程实现滑动按钮功能,结合实例形式较为详细的分析了Android实现滑动按钮的功能、布局及相关注意事项,需要的朋友可以参考下
    2017-02-02
  • Android Shape控件美化实现代码

    Android Shape控件美化实现代码

    本文主要介绍Android Shape 控件的美化, 大家在开发Android程序的时候对系统自带的控件进行修改,这里给大家一个实例,供大家参考
    2016-07-07
  • Android中利用zxing实现自己的二维码扫描识别详解

    Android中利用zxing实现自己的二维码扫描识别详解

    这篇文章主要给大家介绍了关于Android中利用zxing实现自己的二维码扫描识别的相关资料,文中通过图文介绍的非常详细,对大家学习或者使用zxing具有一定的参考学习价值,需要的朋友们下面来一起看看吧。
    2017-09-09
  • 适用于Android开发的简单聊天软件

    适用于Android开发的简单聊天软件

    为大家介绍一个手机App开发项目,简单的聊天软件,适用于Android开发,感兴趣的小伙伴们可以参考一下
    2016-07-07
  • Android Studio+Servlet+MySql实现登录注册

    Android Studio+Servlet+MySql实现登录注册

    对于大多数的APP都有登录注册这个功能,本文就来介绍一下Android Studio+Servlet+MySql实现登录注册,需要的朋友们下面随着小编来一起学习学习吧
    2021-05-05

最新评论