summaryrefslogtreecommitdiffstats
path: root/samples/Support7Demos/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/Support7Demos/AndroidManifest.xml')
-rw-r--r--samples/Support7Demos/AndroidManifest.xml29
1 files changed, 16 insertions, 13 deletions
diff --git a/samples/Support7Demos/AndroidManifest.xml b/samples/Support7Demos/AndroidManifest.xml
index 288b124e8..e1a0f98ae 100644
--- a/samples/Support7Demos/AndroidManifest.xml
+++ b/samples/Support7Demos/AndroidManifest.xml
@@ -60,8 +60,9 @@
<!-- MediaRouter Support Samples -->
<activity android:name=".media.SampleMediaRouterActivity"
+ android:configChanges="orientation|screenSize"
android:label="@string/sample_media_router_activity_dark"
- android:theme="@style/Theme.AppCompat">
+ android:theme="@style/Theme.SampleMediaRouter">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv7.SAMPLE_CODE" />
@@ -69,8 +70,9 @@
</activity>
<activity android:name=".media.SampleMediaRouterActivity$Light"
+ android:configChanges="orientation|screenSize"
android:label="@string/sample_media_router_activity_light"
- android:theme="@style/Theme.AppCompat.Light">
+ android:theme="@style/Theme.SampleMediaRouter.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv7.SAMPLE_CODE" />
@@ -78,8 +80,9 @@
</activity>
<activity android:name=".media.SampleMediaRouterActivity$LightWithDarkActionBar"
+ android:configChanges="orientation|screenSize"
android:label="@string/sample_media_router_activity_light_with_dark_action_bar"
- android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
+ android:theme="@style/Theme.SampleMediaRouter.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv7.SAMPLE_CODE" />
@@ -194,16 +197,6 @@
</intent-filter>
</activity>
- <activity android:name=".app.ActionBarWithDrawerLayout"
- android:label="@string/action_bar_with_navigation_drawer"
- android:theme="@style/Theme.AppCompat"
- >
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="com.example.android.supportv7.SAMPLE_CODE"/>
- </intent-filter>
- </activity>
-
<activity android:name=".app.ActionBarPreferences"
android:label="@string/action_bar_preferences"
android:theme="@style/Theme.AppCompat">
@@ -430,6 +423,16 @@
<category android:name="com.example.android.supportv7.SAMPLE_CODE"/>
</intent-filter>
</activity>
+
+ <!-- DrawerLayout demo activity -->
+ <activity android:name=".widget.DrawerLayoutActivity"
+ android:label="@string/drawer_layout_activity"
+ android:theme="@style/Theme.SampleDrawerLayout">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="com.example.android.supportv7.SAMPLE_CODE"/>
+ </intent-filter>
+ </activity>
</application>