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方法来传递页面跳转时所需要传递的信息

比如:

putExtra(“给需要传递的信息命名”,需要传递的信息的内容)

Intent通过调用getStringExtra方法来接受传递过来的信息

getStringExtra(“传递过来的信息的名字”);

下面的代码将实现用户输入完信息之后点击登入按钮,页面将跳转到另一页面显示个人信息,然后在这个页面有一个返回按钮,点击返回按钮,页面将返回登入页面再次显示个人信息。

MainActivity.java

package com.example.hsy.register;
import android.content.Intent;
import android.support.annotation.IdRes;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Spinner;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
  EditText etName,etPwd;
  Button btnLogin;
  TextView tvShow;
  RadioGroup rg;
  RadioButton rbMale,rbFelMale;
  CheckBox checkbox1,checkbox2,checkbox3;
  Spinner spcity;
  String sex="";
  String hobby1="",hobby2="",hobby3="";
  String result="";
  String city="";
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.test);
    init();
    rglistener();
    btnloginlistener();
    box1listener();
    box2listener();
    box3listener();
    splistener();
  }
  @Override
  protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    tvShow.setText("返回结果是:"+"\n"+data.getStringExtra("result1").toString()+
        "\n");
  }
  private void splistener() {
    spcity.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
      @Override
      public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
        city=(String) spcity.getSelectedItem();
      }
      @Override
      public void onNothingSelected(AdapterView<?> parent) {
      }
    });
  }
  private void box3listener() {
    checkbox3.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
      @Override
      public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        if(isChecked){
          hobby3="看书";
        } else {
          hobby3="";
        }
      }
    });
  }
  private void box2listener() {
    checkbox2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
      @Override
      public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        if(isChecked){
          hobby2="游泳";
        } else {
          hobby2="";
        }
      }
    });
  }
  private void box1listener() {
    checkbox1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
      @Override
      public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        if(isChecked){
          hobby1="唱歌";
        } else {
          hobby1="";
        }
      }
    });
  }
  private void btnloginlistener() {
    btnLogin.setOnClickListener(new View.OnClickListener(){
      @Override
      public void onClick(View v){
        result="用户名是:"+etName.getText().toString()+"\n"+"密码是:"+
            etPwd.getText().toString()+"\n"+"性别是:"+sex+"\n"+"爱好是:"+hobby1+" "
            +hobby2+" "+hobby3+" "+
        "\n"+"所在城市:"+city;
        //tvShow.setText(result);
        Intent i = new Intent(MainActivity.this,Main2Activity.class);
        i.putExtra("data1",result);
        startActivityForResult(i,0);
      }
    });
  }
  private void rglistener() {
    rg.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener(){
      @Override
      public void onCheckedChanged(RadioGroup group, @IdRes int checkedId){
        if(checkedId== R.id.rbMale)
          sex="男生";
        else
          sex="女生";
      }
    });
  }
  private void init() {
    etName=(EditText) findViewById(R.id.etName);
    etPwd=(EditText) findViewById(R.id.etPwd);
    btnLogin=(Button) findViewById(R.id.btnLogin);
    tvShow=(TextView) findViewById(R.id.tvShow);
    rg=(RadioGroup) findViewById(R.id.rg);
    rbMale=(RadioButton) findViewById(R.id.rbMale);
    rbFelMale=(RadioButton) findViewById(R.id.rbFeMale);
    checkbox1=(CheckBox) findViewById(R.id.checkbox1);
    checkbox2=(CheckBox) findViewById(R.id.checkbox2);
    checkbox3=(CheckBox) findViewById(R.id.checkbox3);
    spcity=(Spinner) findViewById(R.id.Spcity);
  }
}

MainActivity2.java

package com.example.hsy.register;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class Main2Activity extends AppCompatActivity {
  TextView tvShow;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2);
    tvShow=(TextView)findViewById(R.id.tvShow);
    Intent intent = getIntent();
    tvShow.setText(intent.getStringExtra("data1").toString());
    findViewById(R.id.btnBack).setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        Intent intent1=new Intent(Main2Activity.this,MainActivity.class);
        intent1.putExtra("result1",tvShow.getText().toString());
        setResult(1,intent1);
        finish();
      }
    });
  }
}

test.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="match_parent"
  android:layout_height="match_parent">
  <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="用户名:"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:textSize="20dp"
      android:textColor="@color/colorPrimaryDark"/>
    <EditText
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:hint="输入2-10个字符"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:layout_weight="1"
      android:id="@+id/etName"/>
  </LinearLayout>
  <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="密  码:"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:textSize="20dp"
      android:textColor="@color/colorPrimaryDark"/>
    <EditText
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:hint="输入6-10个字符"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:layout_weight="1"
      android:id="@+id/etPwd"/>
  </LinearLayout>
  <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="选择性别:"
      android:layout_marginTop="10dp"
      android:layout_marginLeft="10dp"
      android:textSize="20dp"
      android:textColor="@color/colorPrimary"
      />
    <RadioGroup
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal"
      android:id="@+id/rg">
      <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dp"
        android:layout_marginTop="10dp"
        android:textColor="@color/colorAccent"
        android:textSize="10dp"
        android:text="男"
        android:id="@+id/rbMale"/>
      <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dp"
        android:layout_marginTop="10dp"
        android:textColor="@color/colorAccent"
        android:textSize="10dp"
        android:text="女"
        android:id="@+id/rbFeMale"/>
    </RadioGroup>
  </LinearLayout>
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:textSize="20dp"
      android:textColor="@color/colorAccent"
      android:text="兴趣爱好:"/>
    <CheckBox
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:textSize="15dp"
      android:textColor="@color/colorAccent"
      android:id="@+id/checkbox1"
      android:text="唱歌"/>
    <CheckBox
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:textSize="15dp"
      android:textColor="@color/colorAccent"
      android:id="@+id/checkbox2"
      android:text="游泳"/>
    <CheckBox
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="10dp"
      android:layout_marginTop="10dp"
      android:textSize="15dp"
      android:textColor="@color/colorAccent"
      android:id="@+id/checkbox3"
      android:text="看书"/>
  </LinearLayout>
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5dp"
      android:layout_marginTop="6dp"
      android:textSize="15dp"
      android:text="所在地"/>
    <Spinner
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginTop="6dp"
      android:layout_marginLeft="10dp"
      android:entries="@array/citys"
      android:id="@+id/Spcity">
    </Spinner>
  </LinearLayout>
  <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="登录"
    android:layout_marginTop="10dp"
    android:textSize="20dp"
    android:id="@+id/btnLogin"/>
  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:text="显示信息"
    android:id="@+id/tvShow"/>
</LinearLayout>

activity_main2.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
  android:orientation="vertical"
  tools:context="com.example.hsy.register.Main2Activity">
  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_marginLeft="10dp"
    android:text="显示结果"
    android:id="@+id/tvShow"/>
  <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:text="返回结果"
    android:id="@+id/btnBack"/>
</LinearLayout>

总结

以上所述是小编给大家介绍的Android 实现页面跳转,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!

(0)

相关推荐

  • Android使用Circular Reveal动画让页面跳转更炫酷

    Android 5.0中引入了很多炫酷的动画效果,Circular Reveal便是其中一种.使用起来很简单,但效果却是意想不到的炫酷,让你的app更有逼格. 一.效果 废话不说,下面的gif图中使用Circular Reveal动画实现跳转到搜索页的效果.gif图压缩宽高比失真了,不过效果还在.源码在最下面,可以下载体验下. 二.Circular Reveal介绍 当您显示或隐藏一组 UI 元素时,揭露动画可为用户提供视觉连续性. ViewAnimationUtils.createCircul

  • 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 Intent可以理解为信使(意图) 由Intent来协助完成Android各个组件之间的通讯 Intent实现页面之间的跳转 1>startActivity(intent) 2>startActivityForResult(intent,requestCode) onActivityResult(int requestCode,int resultCode,Intent data) setResult(resultCode,data) 第二种启动方式可以返回结果 代码 Fi

  • 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 实现页面跳转

    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实现页面跳转的全过程记录

    目录 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 Intent实现页面跳转的方法示例

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

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

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

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

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

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

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

  • Android使用Intent隐式实现页面跳转

    在上一篇文章中我介绍了使用Intent显式来实现页面向下跳转,接下来这篇文章主要介绍的是使用Intent隐式来实现向上跳转,什么意思呢,就是当我们从第一个页面跳转到第二个页面的时候我们可以从第二个页面跳转回去. 通过查阅文档你会发现Activity中还有一个startActivityForResult()方法也是用于启动活动的,但是这个方法期望在活动销毁的时候能返回一个结果给上一个活动,毫无疑问这就是我们所要达到的效果. startActivityForResult()方法接收2个参数,第一个参

随机推荐