├── .gitignore ├── AndroidManifest.xml ├── Development Concepts - Material Design CoP.docx ├── Development Concepts - Material Design CoP.pdf ├── LICENSE ├── MaterialDesignSupport.apk ├── Principles - Material Design CoP.docx ├── Principles - Material Design CoP.pdf ├── README.md ├── art ├── Material Design - Screen Shot 1.png ├── Material Design - Screen Shot 2.png ├── Material Design - Screen Shot 3.png ├── Material Design - Screen Shot 4.png ├── Material Design - Screen Shot 5.png └── Material Design - Screen Shot 6.png ├── libs ├── android-support-v4.jar └── cardview.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_action_back_white.png ├── drawable-mdpi │ └── ic_action_back_white.png ├── drawable-xhdpi │ ├── chevron.png │ ├── close_button_white.png │ ├── curly_white.png │ ├── drawer_shadow.9.png │ ├── ic_action_back.png │ ├── ic_action_back_white.png │ ├── ic_action_collapse.png │ ├── ic_action_collapse_small.png │ ├── ic_action_expand.png │ ├── ic_action_expand_small.png │ ├── ic_action_forward.png │ ├── ic_action_forward_white.png │ ├── ic_action_play.png │ ├── northstar_white.png │ └── slide_white.png ├── drawable-xxhdpi │ ├── activity_transition_enable_transition.png │ ├── activity_transition_enter_example.png │ ├── activity_transition_exit_example.png │ ├── activity_transition_shared_element_callee.png │ ├── activity_transition_shared_element_caller.png │ ├── activity_transition_shared_element_kick_off.png │ ├── app_environment_depth_hierarchy.png │ ├── app_environment_device_space.png │ ├── card_view_layout_xml.png │ ├── card_view_resulting_ui_element.png │ ├── elevation_code_sample.png │ ├── elevation_dimens_specifications.png │ ├── elevation_image_button.png │ ├── elevation_translation_z.png │ ├── ic_action_back.png │ ├── ic_action_back_white.png │ ├── ic_action_collapse.png │ ├── ic_action_expand.png │ ├── ic_action_forward.png │ ├── ic_action_forward_white.png │ ├── ic_action_play.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ ├── one_adaptive_design_01_adaptive.png │ ├── one_adaptive_design_02_adaptive.png │ ├── one_adaptive_design_responsive.png │ ├── paper_and_ink_fab_seam.png │ ├── paper_and_ink_fab_step.png │ ├── paper_and_ink_ink.png │ ├── paper_and_ink_seam.png │ ├── paper_and_ink_step.png │ ├── paper_and_ink_toolbar.png │ ├── ripple_button_borders.png │ ├── ripple_default_color_image.png │ ├── ripple_fab_declaration.png │ ├── ripple_fab_imagebutton.png │ ├── ripple_fab_shape.png │ ├── ripple_water.png │ ├── view_animation_animate_view_down.png │ ├── view_animation_animate_view_up.png │ ├── view_animation_path_interpolator_code.png │ ├── view_animation_path_interpolator_inclusion_code.png │ ├── view_animation_path_interpolator_inclusion_xml.png │ ├── view_animation_path_interpolator_xml.png │ ├── view_clipping.png │ ├── view_clipping_interstital.png │ ├── view_clipping_java.png │ ├── view_clipping_layout.png │ ├── view_clipping_shape_layout.png │ ├── visual_design_01_grid.png │ ├── visual_design_02_grid.png │ ├── visual_design_color.png │ ├── visual_design_illustration.png │ ├── visual_design_photography.png │ ├── visual_design_system_icons.png │ ├── visual_design_type_rhythm.png │ ├── visual_design_typographic_scale.png │ ├── what_is_material_boucicaut_meister.png │ ├── what_is_material_card.png │ └── what_is_material_magic_the_gathering.png ├── drawable-xxxhdpi │ └── ic_launcher.png ├── drawable │ ├── expandable_list_view_selector.xml │ ├── fab_button_states.xml │ ├── interstitial_fab.xml │ ├── interstitial_fab_ripple.xml │ ├── playground_fab.xml │ ├── presentation_fab.xml │ └── presentation_fab_ripple.xml ├── layout │ ├── core_material.xml │ ├── core_material_drawer.xml │ ├── drawer_child_navigation_row.xml │ ├── drawer_divider_row.xml │ ├── drawer_expandable_row.xml │ ├── drawer_navigation_row.xml │ ├── interstitial_layout.xml │ ├── playground_action_bar_card_row.xml │ ├── playground_action_card_row.xml │ ├── playground_detail_layout.xml │ ├── playground_elevation_card_row.xml │ ├── playground_layout.xml │ ├── playground_navigation_card_row.xml │ ├── presentation_action_bar_row.xml │ ├── presentation_image_row.xml │ ├── presentation_information_row.xml │ ├── presentation_layout.xml │ ├── presentation_navigation_row.xml │ ├── presentation_title_row.xml │ └── presentation_video_row.xml ├── raw │ ├── activity_transition.mp4 │ ├── elevation_example.mp4 │ ├── meaningful_motion_animation_responsive.mp4 │ ├── meaningful_motion_shared_stage.mp4 │ ├── meaningful_motion_transition_directs_focus.mp4 │ ├── paper_and_ink_ink_fill.mp4 │ ├── ripple_default_color_video_four.mp4 │ ├── ripple_default_color_video_one.mp4 │ ├── ripple_default_color_video_three.mp4 │ ├── ripple_default_color_video_two.mp4 │ ├── ripple_fab_interaction.mp4 │ ├── vew_animation_path_interpolator_vs_linear.mp4 │ ├── view_animation_accelerate_decelerate_interpolator.mp4 │ ├── view_animation_path_interpolator.mp4 │ ├── view_animation_reveal_effect.mp4 │ ├── visual_design_dynamic_color.mp4 │ ├── what_is_material_input_ripple.mp4 │ └── what_is_material_paper_transforming.mp4 └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── wildsmith └── material ├── core ├── CoreMaterialActivity.java ├── CoreMaterialApplication.java ├── CoreMaterialFragment.java └── CoreMaterialListFragment.java ├── drawer ├── DrawerListRowAdapter.java ├── DrawerListRowFactory.java ├── DrawerOnClickListener.java ├── DrawerToggleListener.java └── rows │ ├── ChildNavigationDrawerRow.java │ ├── DividerDrawerRow.java │ ├── ExpandableDrawerRow.java │ └── NavigationDrawerRow.java ├── interstitial ├── InterstitialActivity.java └── InterstitialFragment.java ├── list ├── ListRow.java ├── ListRowAdapter.java └── expandable │ ├── AnimatedExpandableListAdapter.java │ ├── AnimatedExpandableListView.java │ ├── ExpandCollapseAnimation.java │ ├── ExpandableListDummyView.java │ ├── ExpandableListRow.java │ └── ExpandableListStateHolder.java ├── playground ├── PlaygroundActivity.java ├── PlaygroundFragment.java ├── PlaygroundListRowAdapter.java ├── detail │ ├── PlaygroundDetailActivity.java │ └── PlaygroundDetailFragment.java └── rows │ ├── PlaygroundActionBarCardRow.java │ ├── PlaygroundActionCardRow.java │ ├── PlaygroundCardListRow.java │ ├── PlaygroundElevationCardRow.java │ └── PlaygroundNavigationCardRow.java ├── presentation ├── PresentationActivity.java ├── PresentationListFragment.java ├── PresentationListRowAdapter.java ├── PresentationSlideFactory.java ├── devtopics │ ├── ActivityTransitionActivity.java │ ├── ActivityTransitionFragment.java │ ├── CardViewActivity.java │ ├── CardViewFragment.java │ ├── ElevationActivity.java │ ├── ElevationFragment.java │ ├── RippleActivity.java │ ├── RippleFragment.java │ ├── ViewAnimationActivity.java │ ├── ViewAnimationFragment.java │ ├── ViewClippingActivity.java │ └── ViewClippingFragment.java ├── rows │ ├── PresentationActionBarRow.java │ ├── PresentationImageRow.java │ ├── PresentationInformationRow.java │ ├── PresentationListRow.java │ ├── PresentationNavigationRow.java │ ├── PresentationTitleRow.java │ └── PresentationVideoRow.java └── uitopics │ ├── AppEnvironmentActivity.java │ ├── AppEnvironmentFragment.java │ ├── MeaningfulMotionActivity.java │ ├── MeaningfulMotionFragment.java │ ├── OneAdaptiveDesignActivity.java │ ├── OneAdaptiveDesignFragment.java │ ├── PaperAndInkActivity.java │ ├── PaperAndInkFragment.java │ ├── VisualDesignActivity.java │ ├── VisualDesignFragment.java │ ├── WhatIsMaterialActivity.java │ └── WhatIsMaterialFragment.java ├── utils ├── ResourceHelper.java └── StringUtils.java └── views ├── EditTextLabelFloat.java ├── FloatingActionButton.java ├── VideoViewRecycler.java └── ViewHelper.java /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | *.pydevproject 26 | .project 27 | .metadata 28 | bin/** 29 | tmp/** 30 | tmp/**/* 31 | *.tmp 32 | *.bak 33 | *.swp 34 | *~.nib 35 | local.properties 36 | .classpath 37 | .settings/ 38 | .loadpath 39 | 40 | # External tool builders 41 | .externalToolBuilders/ 42 | 43 | # Locally stored "Eclipse launch configurations" 44 | *.launch 45 | 46 | # CDT-specific 47 | .cproject 48 | 49 | # PDT-specific 50 | .buildpath 51 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 30 | 34 | 38 | 42 | 46 | 50 | 54 | 58 | 62 | 66 | 70 | 74 | 78 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /Development Concepts - Material Design CoP.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/Development Concepts - Material Design CoP.docx -------------------------------------------------------------------------------- /Development Concepts - Material Design CoP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/Development Concepts - Material Design CoP.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2014 Thomas Belk 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /MaterialDesignSupport.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/MaterialDesignSupport.apk -------------------------------------------------------------------------------- /Principles - Material Design CoP.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/Principles - Material Design CoP.docx -------------------------------------------------------------------------------- /Principles - Material Design CoP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/Principles - Material Design CoP.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | MaterialDesignSupport 2 | ===================== 3 | 4 | Duplicate project to MaterialDesign, BUT meant for non Android L devices. 5 | 6 | ===================== 7 | 8 | Android project that focuses on the new design and development opportunities and concepts with Material Design. It can be broken down into three sections. 9 | 10 | 1. Presentation slides on Material Design philosophy. (Slides attached: Principles - Material Design CoP) 11 | 2. Presentation slides on Material Design development. (Slides attached: Development Concepts - Material Design CoP) 12 | 3. Playground for implemented use of new Android L APIs. 13 | 14 | Screen Shots 15 | ============== 16 | 17 | ![Demo](art/Material Design - Screen Shot 1.png) 18 | 19 | ![Demo](art/Material Design - Screen Shot 2.png) 20 | 21 | ![Demo](art/Material Design - Screen Shot 3.png) 22 | 23 | ![Demo](art/Material Design - Screen Shot 4.png) 24 | 25 | ![Demo](art/Material Design - Screen Shot 5.png) 26 | 27 | ![Demo](art/Material Design - Screen Shot 6.png) 28 | -------------------------------------------------------------------------------- /art/Material Design - Screen Shot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/art/Material Design - Screen Shot 1.png -------------------------------------------------------------------------------- /art/Material Design - Screen Shot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/art/Material Design - Screen Shot 2.png -------------------------------------------------------------------------------- /art/Material Design - Screen Shot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/art/Material Design - Screen Shot 3.png -------------------------------------------------------------------------------- /art/Material Design - Screen Shot 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/art/Material Design - Screen Shot 4.png -------------------------------------------------------------------------------- /art/Material Design - Screen Shot 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/art/Material Design - Screen Shot 5.png -------------------------------------------------------------------------------- /art/Material Design - Screen Shot 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/art/Material Design - Screen Shot 6.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/cardview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/libs/cardview.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-20 15 | android.library.reference.1=../../../Documents/Development/android-sdk-macosx/extras/android/m2repository/com/android/support/cardview-v7/21.0.0-rc1/cardview-v7-21.0.0-rc1 16 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-hdpi/ic_action_back_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-mdpi/ic_action_back_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/chevron.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/close_button_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/close_button_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/curly_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/curly_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_back.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_back_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_collapse.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_collapse_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_collapse_small.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_expand.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_expand_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_expand_small.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_forward.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_forward_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/ic_action_play.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/northstar_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/northstar_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/slide_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xhdpi/slide_white.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/activity_transition_enable_transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/activity_transition_enable_transition.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/activity_transition_enter_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/activity_transition_enter_example.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/activity_transition_exit_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/activity_transition_exit_example.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/activity_transition_shared_element_callee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/activity_transition_shared_element_callee.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/activity_transition_shared_element_caller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/activity_transition_shared_element_caller.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/activity_transition_shared_element_kick_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/activity_transition_shared_element_kick_off.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/app_environment_depth_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/app_environment_depth_hierarchy.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/app_environment_device_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/app_environment_device_space.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/card_view_layout_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/card_view_layout_xml.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/card_view_resulting_ui_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/card_view_resulting_ui_element.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/elevation_code_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/elevation_code_sample.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/elevation_dimens_specifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/elevation_dimens_specifications.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/elevation_image_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/elevation_image_button.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/elevation_translation_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/elevation_translation_z.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_back.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_back_white.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_collapse.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_expand.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_forward.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_forward_white.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_action_play.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/one_adaptive_design_01_adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/one_adaptive_design_01_adaptive.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/one_adaptive_design_02_adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/one_adaptive_design_02_adaptive.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/one_adaptive_design_responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/one_adaptive_design_responsive.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/paper_and_ink_fab_seam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/paper_and_ink_fab_seam.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/paper_and_ink_fab_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/paper_and_ink_fab_step.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/paper_and_ink_ink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/paper_and_ink_ink.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/paper_and_ink_seam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/paper_and_ink_seam.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/paper_and_ink_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/paper_and_ink_step.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/paper_and_ink_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/paper_and_ink_toolbar.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ripple_button_borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ripple_button_borders.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ripple_default_color_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ripple_default_color_image.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ripple_fab_declaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ripple_fab_declaration.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ripple_fab_imagebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ripple_fab_imagebutton.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ripple_fab_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ripple_fab_shape.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ripple_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/ripple_water.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_animation_animate_view_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_animation_animate_view_down.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_animation_animate_view_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_animation_animate_view_up.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_animation_path_interpolator_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_animation_path_interpolator_code.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_animation_path_interpolator_inclusion_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_animation_path_interpolator_inclusion_code.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_animation_path_interpolator_inclusion_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_animation_path_interpolator_inclusion_xml.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_animation_path_interpolator_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_animation_path_interpolator_xml.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_clipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_clipping.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_clipping_interstital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_clipping_interstital.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_clipping_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_clipping_java.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_clipping_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_clipping_layout.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/view_clipping_shape_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/view_clipping_shape_layout.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_01_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_01_grid.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_02_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_02_grid.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_color.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_illustration.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_photography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_photography.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_system_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_system_icons.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_type_rhythm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_type_rhythm.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/visual_design_typographic_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/visual_design_typographic_scale.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/what_is_material_boucicaut_meister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/what_is_material_boucicaut_meister.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/what_is_material_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/what_is_material_card.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/what_is_material_magic_the_gathering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxhdpi/what_is_material_magic_the_gathering.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawwinbin/MaterialDesignSupport/8b276466dc9104d3dca38b7585739ddd3f6dc44d/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/expandable_list_view_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/fab_button_states.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 11 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /res/drawable/interstitial_fab.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/interstitial_fab_ripple.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/playground_fab.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/presentation_fab.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/presentation_fab_ripple.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout/core_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 18 | 19 | -------------------------------------------------------------------------------- /res/layout/core_material_drawer.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 12 | 13 | 18 | 19 | 29 | 30 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /res/layout/drawer_child_navigation_row.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 13 | 14 | 22 | 23 | -------------------------------------------------------------------------------- /res/layout/drawer_divider_row.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /res/layout/drawer_expandable_row.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | 14 | 22 | 23 | 31 | 32 | -------------------------------------------------------------------------------- /res/layout/drawer_navigation_row.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | 14 | 24 | 25 | -------------------------------------------------------------------------------- /res/layout/interstitial_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 21 | 22 | 30 | 31 | 32 | 33 | 41 | 42 | 51 | 52 | 53 | 61 | 62 | 63 | 64 | 69 | 70 | 75 | 76 | 86 | 87 | -------------------------------------------------------------------------------- /res/layout/playground_action_bar_card_row.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/layout/playground_action_card_row.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | 17 | 20 | 21 | 30 | 31 | 43 | 44 | 45 | 52 | 53 | 58 | 59 |