作為Android四大組件之一,Activity可以說(shuō)是最基本也是最常見(jiàn)的組件,它提供了一個(gè)顯示界面,從而實(shí)現(xiàn)與用戶的交互,作為初學(xué)者,必須熟練掌握。今天我們就來(lái)通過(guò)實(shí)驗(yàn)演示,來(lái)幫助大家理解Activity的四大啟動(dòng)模式。
演示效果如下:
第一步:實(shí)驗(yàn)前準(zhǔn)備,相關(guān)配置文件以及Activity的建立
(1)AndroidMainfest.xml配置文件
1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.administrator.intentflags"> 4 <application 5 android:allowBackup="true" 6 android:icon="@mipmap/ic_launcher" 7 android:label="@string/app_name" 8 android:supportsRtl="true" 9 &nbs