213 lines
10 KiB
XML
213 lines
10 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.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.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.BottomSheetUsage"
|
|
android:label="@string/design_bottomsheet"
|
|
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>
|