AndroidManifest.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.ryg.chapter_6"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="19" />
  9. <application
  10. android:allowBackup="true"
  11. android:icon="@drawable/ic_launcher"
  12. android:label="@string/app_name"
  13. android:theme="@style/AppTheme" >
  14. <activity
  15. android:name=".TestActivity"
  16. android:configChanges="orientation|screenSize"
  17. android:label="@string/app_name"
  18. android:launchMode="standard" />
  19. <activity
  20. android:name=".DemoActivity_1"
  21. android:configChanges="screenLayout"
  22. android:label="@string/title_scene_1"
  23. android:launchMode="standard" />
  24. <activity
  25. android:name=".DemoActivity_2"
  26. android:configChanges="screenLayout"
  27. android:label="@string/app_name"
  28. android:launchMode="standard" />
  29. <activity
  30. android:name=".MainActivity"
  31. android:label="@string/app_name" >
  32. <intent-filter>
  33. <action android:name="android.intent.action.MAIN" />
  34. <category android:name="android.intent.category.LAUNCHER" />
  35. </intent-filter>
  36. </activity>
  37. </application>
  38. </manifest>