App
android:icon="@drawable/icon" //app的图标 android:theme="@style/xxxTheme" //自己设置的主题 android:label="@string/app_name"//app的名字 android:allowBackup="false" //是否允许备份和恢复 android:vmSafeMode="true" //是否希望虚拟机(vm)运行于安全模式 android:name="MyApp"//填的是一个类 在app开始运行前,这个先于所有开始运行
Activity
android:label="@string/app_name" //该activiy的名字 android:name=".LauncherActivity"//指向那个activity android:theme="@style/xxxWelcome"//主题 android:screenOrientation="landscape"//是限制此页面横屏显示 <span style="white-space:pre"> </span>android:screenOrientation="portrait"//是限制此页面数竖屏显示 android:configChanges="orientation|keyboardHidden" //切屏时不会重新调用生命周期 <span style="white-space:pre"> </span>android:configChanges="orientation"//切屏还是会重新调用各个生命周期,切横、竖屏时只会执行一次 <span style="white-space:pre"> </span>android:configChanges="orientation|screenSize“//设置的MiniSdkVersion和 TargetSdkVersion属性大于等于13的情况下,不调用生命周期,只会执行onConfigurationChanged函数
Activity
<activity-alias //快捷方式所使用 android:name="TestAndroidAlias" android:targetActivity="TestAndroid"//点击快捷方式启动的activity android:label="testAndroidlias"//其他都一样 android:icon="@drawable/ic_launcher_phone"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity-alias>
<p>版权声明:本文为博主原创文章,未经博主允许不得转载。</p>