Android Studio 窗口跳转与传递数据 笔记 2.3

一、前言

安卓应用往往有多个Activity,如何从一个Activity跳转到另一 个Activity呢? 往往要进行事件处理,并且
还会用到安卓里面一个十分重要的组件Intent, 可以把它看成连接安卓不同组件之间的桥梁。

二、笔记2.3概述

在这里插入图片描述

(一)三个基本控件

1标签控件(TextView)

类层次继承图
1、使用显示意图启动组件
类层次继承图
1、使用显示意图启动组件

属性含义
text文本内容
text Size文本字号,单位:sp
text Color文本颜色,#ff000-红色
layout_height高度,单位:dp(wrap_contenr. match_parent)
layout_weight宽度,单位:dp(wrap_contenr. match_parent)

设定内容居中、居左、居右
使用:--------- :居中
使用:---------:居左
使用:---------:居右

常用属性: text、textSize、 textColor.

2、编辑框控件(EditText)

类层次继承图:

常用属性: text, textSize. textColor. hint …

属性含义
text文本内容
text Size文本字号,单位:sp
text Color文本颜色,#ff000-红色
hint提示信息
singleLine单行(turre or faice)
layout_height高度,单位:dp(wrap_contenr. match_parent)
layout_weight宽度,单位:dp(wrap_contenr. match_parent)

3.按钮控件(Button)

类层次继承图:
常用属性:

属性含义
text文本内容
text Size文本字号,单位:sp
text Color文本颜色,#ff000-红色
hint提示信息
singleLine单行(turre or faice)
background背景颜色或背景图片
layout_height高度,单位:dp(wrap_contenr. match_parent)
layout_weight宽度,单位:dp(wrap_contenr. match_parent)
在这里插入图片描述

-EditTextButton是兄弟关系,它们的爹是TextView

(二)、安卓事件处理机制

1.安卓事件处理概述

  • 不论是桌面应用还是手机应用程序,需要对用户的动作提供响应,这种为用户动作提供响应的机制就是事件处理。
  • 安卓提供了两种事件处理机制:基于回调的事件处理和基于监听的事件处理。
  • 基于监听的事件处理是一种” 面向对象”的事件处理,涉及三种对象:事件源(EventSource)、事件**(Event**) 、事件监听器 (EventListener) 。
    2、安卓事件处理步骤
  • 以按钮单击事件处理为例说明安卓事件处理步骤
序号任务
1在界面类里声明按钮控件变量
2通过findViewByld()方法得到按钮实例
3利用setOnClickListener()方法给按钮注册单击事件监听器
4实现单击事件监听器接口,采用匿名实现方式
5在接口的抽象方法里编写事件处理代码

(三)、案例演示:实现用户登录功能

1、创建安卓应用【UserLogin】

  • 基于Empty Actvty 模板创建安卓应用
    在这里插入图片描述
  • 配置项目信息
    在这里插入图片描述
  • 单击【Finish

2、准备背景图片

  • 将背景图片background.png拷贝到drawable 目录
    在这里插入图片描述

3、基于模板创建登录窗口

  • 基于Empty Activity模板创建 LoginActvity,要生成对应的布局文件,并且要设置为启动Activiy。
    在这里插入图片描述
  • 单击【Finish】按钮
    在这里插入图片描述

4、登录窗口布局资源文件 - activity_ login.xml

在这里插入图片描述

  • 将约束布局改为线性布局,并设置相关属性
    在这里插入图片描述
    1.添加用户登录标签
    在这里插入图片描述
    2.添加输入用户名的标签和编辑框,但是需要一个水平方向的线性布局把它们框起来
    在这里插入图片描述
    3.添加输入密码的标签和编辑框,但是需要一个水平方向的线性布局把它们框起来
    在这里插入图片描述
    4.添加登录按钮和取消按钮,但是需要一个水平方向的线性布局把它们框起来
    在这里插入图片描述
  • 登录窗口布局资源文件完整代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="15dp"
    tools:context=".LoginActivity">

    <TextView
        android:id="@+id/tv_user_login"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/user_login"
        android:textColor="#0000ff"
        android:textSize="25sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/tv_username"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/username"
            android:textColor="#000000"
            android:textSize="20sp" />

        <EditText
            android:id="@+id/et_username"
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:hint="@string/input_username"
            android:singleLine="true" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/tv_password"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/password"
            android:textColor="#000000"
            android:textSize="20sp" />

        <EditText
            android:id="@+id/et_password"
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:hint="@string/input_password"
            android:inputType="textPassword"
            android:singleLine="true" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal">

        <Button
            android:id="@+id/btn_login"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="20dp"
            android:paddingLeft="20dp"
            android:paddingRight="20dp"
            android:text="@string/login"
            android:textSize="20sp" />

        <Button
            android:id="@+id/btn_cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="20dp"
            android:paddingRight="20dp"
            android:text="@string/cancel"
            android:textSize="20sp" />
    </LinearLayout>

</LinearLayout>




5、主窗口布局资源文件

  • 主窗口布局资源文件activity_ main xml
    在这里插入图片描述
  • 主窗口完整代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    android:gravity="center"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/tv_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="25dp"
        android:textColor="#0000ff"/>

</LinearLayout>


6、项目清单文件

  • 安卓项目清单文件AndroidManifest.xml,删除MainAcivity元素包含的意图过滤器
    在这里插入图片描述
    7、字符串资源文件
  • 在字符串资源文件strings.xml里定义所需字符串变量
    在这里插入图片描述
<resources>
    <string name="app_name">用户登录</string>
    <string name="user_login">用户登录</string>
    <string name="username">用户:</string>
    <string name="input_username">请输入用户名</string>
    <string name="password">密码:</string>
    <string name="input_password">请输入密码</string>
    <string name="login">登录</string>
    <string name="cancel">取消</string>
</resources>


8、登录窗口

  • 登录窗口LoginActivity

(1)声明控件变量

  • 两个编辑框变量和两个按钮变量
    在这里插入图片描述

(2)通过资源标识符获取控件实例

  • 通过findViewById()方法获取控件实例(类似于JavaScript里的getElementById()方法)
    在这里插入图片描述
    (3)登录按钮事件处理
  • 给登录按钮注册单击监听器,实现监听器接口,并且编写事件处理代码
  • 首先获取用户输入的用户名和密码,然后判断是否正确,弹出不同的提示
    在这里插入图片描述
    (4)取消按钮事件处理
  • 给取消按钮注册单击监听器,实现监听器接口,并且编写事件处理代码
  • 单击取消按钮,关闭登录窗口(另外还有一种处理方法,只是清空两个编辑框而不关闭窗口)
    在这里插入图片描述
  • 登录窗口完整代码
package net.zwq.userlogin;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import org.w3c.dom.Text;



public class LoginActivity extends AppCompatActivity {

    private EditText etUsername;
    private EditText etPassword;
    private Button btnLogin;
    private Button btnCancel;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // 利用布局资源文件设置用户界面
        setContentView(R.layout.activity_login);
        // 通过资源标识符获取控件实例
        etUsername = findViewById(R.id.et_username);
        etPassword = findViewById(R.id.et_password);
        btnLogin = findViewById(R.id.btn_login);
        btnCancel = findViewById(R.id.btn_cancel);
        // 给登录按钮注册单击监听器,实现监听器接口,并且编写事件处理代码
        btnLogin.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                // 获取两个编辑框的数据(trim()方法用于去除字符串前后空格)
                String strUsername = etUsername.getText().toString().trim();
                String strPassword = etPassword.getText().toString().trim();
                // 判断用户名与密码是否正确(假定用户名是"ZQIR12",密码是"123456")
                if (strUsername.equals("ZQIR12") && strPassword.equals("123456")) {
                    // 三个参数:参数1 - 上下文;参数2:吐司内容(字符串);参数3:吐司持续时间
                    Toast.makeText(LoginActivity.this, "恭喜,用户名和密码正确!", Toast.LENGTH_SHORT).show();
                } else {
                    Toast.makeText(LoginActivity.this, "遗憾,用户名或密码错误!", Toast.LENGTH_SHORT).show();
                }
            }
        });
        // 给取消按钮注册单击监听器,实现监听器接口,并且编写事件处理代码
        btnCancel.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                // 关闭当前窗口
                finish();
            }
        });
    }
}


9、启动应用,查看效果
在这里插入图片描述
(1)输入用户名与密码正确的情况,在LoginActivity中可以更改用户名和密码

  • 用户名:ZQIR12
  • 密码:123456
    在这里插入图片描述

(四)利用意图启动组件

1、使用显式意图启动组件

  • 假设有两个窗口:FirstActivity和SecondActivity
    方式一
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
startActivity(intent);


方式二

Intent intent = new Intent();
intent.setClass(FirstActivity.this, SecondActivity.class);
startActivity(intent);


方式三

Intent intent = new Intent();
ComponentName component = new ComponentName(FirstActivity.this, SecondActivity.class);
intent.setComponent(component);
startActivity(intent);


2、使用隐式意图启动组件
(1)在Java代码创建隐式意图

Intent intent = new Intent();
intent.setAction("net.hw.ACTION_NEXT");
intent.addCategory(Intent.CATEGORY_DEFAULT);
startActivity(intent);


(2)在项目清单文件里设置意图过滤器

<activity android:name="net.hw.SecondActivity">
    <intent-filter>
       <action android:name="net.hw.ACTION_NEXT" />
       <category android:name="android.intent.category.DEFAULT" />
   </intent-filter>
</activity>


(五)利用意图传递数据
1、传递单项数据

  • 在起始组件通过意图传递单项数据
// 通过意图传递单项数据
intent.putExtra("username", strUsername);
intent.putExtra("password", strPassword);


  • 在目标组件通过意图获取单项数据
// 通过意图获取单项数据
String username = intent.getStringExtra("username");
String password = intent.getStringExtra("password");


2、传递数据包
(1)在起始组件通过意图携带数据包

// 创建数据包,封装数据
Bundle data = new Bundle();
data.putString("username", strUsername);
data.putString("password", strPassword);
// 通过意图携带数据包
intent.putExtras(data);


(2)在目标组件通过意图获取数据包

// 获取意图携带的数据包
Bundle data = intent.getExtras();
// 从数据包里按键取值获取各项数据
String username = data.getString("username");
String password = data.getString("password");


(六)案例演示:修改用户登录程序

  • 功能要求:当登录成功,跳转到主窗口,显示用户名与密码。

1、修改登录窗口代码

  • 创建显式意图,用意图携带数据,按照意图启动目标组件
  • 在这里插入图片描述

2、修改主窗口代码

  • 接收登录窗口通过意图传递的数据并显示在标签里
    在这里插入图片描述

3、启动应用,查看效果

在这里插入图片描述
(1)输入用户名与密码正确的情况

  • 用户名:ZQIR12
  • 密码:123456
    在这里插入图片描述
    (2)输入用户名或密码错误的情况
    在这里插入图片描述

三、归纳总结

如果一个Application只有一个Activity的话,Application能创造的价值可就比现在少很多了。我们需要Activity之间能够灵活的跳转,除了跳转,它能够在不同的Activity之间传送数据才算有意思。

  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值