人生苦短,kotlin未尝不可~
实现目标
点击FirstActivity
(主Activity)的一个Button
跳转到SecondActivity
实现效果
方法1:使用显式Intent
首先,我们要为FirstActivity
创建一个按钮。
编辑其布局文件activity_main.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=".FirstActivity">
<!--在中间添加一个按钮(ID:myButton)-->
<Button
android:id="@+id/myButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/button"
tools:layout_editor_absoluteX