Files
android_development/samples/SupportDesignDemos/AndroidManifest.xml
Chris Banes 01c621aed6 Add CTL + nested Toolbar demo
BUG: 25680977
Change-Id: I50a64d1cf08f779aa37fa4c0221eac556c1fb087
2015-12-07 11:08:52 +00:00

240 lines
11 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2015 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Declare the contents of this Android application. The namespace
attribute brings in the Android platform namespace, and the package
supplies a unique name for the application. When writing your
own application, the package name must be changed from "com.example.*"
to come from a domain that you own or have control over. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.support.design">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="21" />
<application android:label="@string/activity_sample_code"
android:supportsRtl="true"
android:icon="@drawable/app_sample_code"
android:theme="@style/Theme.FAB">
<activity android:name="SupportDesignDemos">
<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>
<activity android:name=".widget.FloatingActionButtonUsage"
android:label="@string/design_fab"
android:theme="@style/Theme.FAB">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.NavigationViewUsage"
android:label="@string/design_navigation"
android:theme="@style/Theme.Navigation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.NavigationViewWithoutDrawer"
android:label="@string/design_navigation_without_drawer"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.TabLayoutUsage"
android:label="@string/design_tabs_basic"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.TextInputLayoutUsage"
android:label="@string/design_text_input"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.SnackbarUsage"
android:label="@string/design_snackbar_basic"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.SnackbarWithFloatingActionButton"
android:label="@string/design_snackbar_fab"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.SnackbarWithoutCoordinatorLayout"
android:label="@string/design_snackbar_without_col"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarScrollTabsScroll"
android:label="@string/design_appbar_toolbar_scroll_tabs_scroll"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarScrollTabsScrollSnap"
android:label="@string/design_appbar_toolbar_scroll_tabs_scroll_snap"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarScrollTabsPin"
android:label="@string/design_appbar_toolbar_scroll_tabs_pin"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarScrollTabsPinWithSwipeRefresh"
android:label="@string/design_appbar_toolbar_scroll_tabs_pin_with_swiperefresh"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseThenPin"
android:label="@string/design_appbar_collapsing_toolbar_pin"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseThenPinWithFab"
android:label="@string/design_appbar_collapsing_toolbar_pin_fab"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseThenPinNested"
android:label="@string/design_appbar_collapsing_toolbar_pin_nested"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseThenScroll"
android:label="@string/design_appbar_collapsing_toolbar_scroll"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseThenScrollWithSwipeRefresh"
android:label="@string/design_appbar_collapsing_toolbar_scroll_with_swiperefresh"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseWithImage"
android:label="@string/design_appbar_collapsing_toolbar_with_image"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarCollapseWithImageWithInsets"
android:label="@string/design_appbar_collapsing_toolbar_with_image_insets"
android:theme="@style/Theme.Design.TransparentStatus">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.AppBarLayoutToolbarParallaxOverlapContent"
android:label="@string/design_appbar_parallax_overlap"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.BottomSheetPersistent"
android:label="@string/design_bottomsheet_persistent"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".widget.BottomSheetHideable"
android:label="@string/design_bottomsheet_hideable"
android:theme="@style/Theme.Design">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.support.design.SAMPLE_CODE" />
</intent-filter>
</activity>
</application>
</manifest>