Android学习笔记(4)——Activity生命周期
Android应用程序由很多的 Activity 组成,本例将简单说明Activity的 生命周期 过程: new一个Android应用程序,其中先new两个Activity用来演示(FirstActivity、SecondActivity): FirstActivity: 布局first.xml: <RelativeLayout 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" tools:context=".FirstActivity" > <Button android:id="@+id/myButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="@string/hello_first" />