├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE_PROCEDURE.md ├── art ├── bgmonitor.gif ├── sample1.png └── sample2.png ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── material-sheet-fab ├── bintray.gradle ├── build.gradle ├── maven.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ ├── com │ │ └── gordonwong │ │ │ └── materialsheetfab │ │ │ ├── AnimatedFab.java │ │ │ ├── DimOverlayFrameLayout.java │ │ │ ├── MaterialSheetFab.java │ │ │ ├── MaterialSheetFabEventListener.java │ │ │ └── animations │ │ │ ├── AnimationListener.java │ │ │ ├── FabAnimation.java │ │ │ ├── MaterialSheetAnimation.java │ │ │ └── OverlayAnimation.java │ └── io │ │ └── codetail │ │ ├── animation │ │ ├── RevealAnimator.java │ │ ├── SupportAnimator.java │ │ ├── SupportAnimatorLollipop.java │ │ ├── SupportAnimatorPreL.java │ │ └── ViewAnimationUtils.java │ │ └── widget │ │ ├── RevealFrameLayout.java │ │ └── RevealLinearLayout.java │ └── res │ ├── layout │ └── dim_overlay.xml │ ├── values-v21 │ └── refs.xml │ └── values │ ├── colors.xml │ └── refs.xml ├── sample-apks ├── sample-release-1-0-1.apk ├── sample-release-1-0-2.apk ├── sample-release-1-0-3.apk └── sample-release-1-0.apk ├── sample ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── gordonwong │ │ └── materialsheetfab │ │ └── sample │ │ ├── Fab.java │ │ ├── MainActivity.java │ │ ├── adapters │ │ ├── MainPagerAdapter.java │ │ └── NotesAdapter.java │ │ ├── fragments │ │ ├── AllFragment.java │ │ ├── FavoritesFragment.java │ │ ├── NotesListFragment.java │ │ └── SharedFragment.java │ │ └── models │ │ └── Note.java │ └── res │ ├── drawable-xhdpi │ ├── ic_access_alarms_grey600_24dp.png │ ├── ic_add_grey600_24dp.png │ ├── ic_create_grey600_24dp.png │ ├── ic_event_white_24dp.png │ ├── ic_mic_grey600_24dp.png │ ├── ic_photo_camera_grey600_24dp.png │ ├── ic_place_white_24dp.png │ └── ic_search_white_24dp.png │ ├── drawable-xxhdpi │ ├── ic_access_alarms_grey600_24dp.png │ ├── ic_add_grey600_24dp.png │ ├── ic_create_grey600_24dp.png │ ├── ic_event_white_24dp.png │ ├── ic_mic_grey600_24dp.png │ ├── ic_photo_camera_grey600_24dp.png │ ├── ic_place_white_24dp.png │ └── ic_search_white_24dp.png │ ├── drawable-xxxhdpi │ ├── ic_access_alarms_grey600_24dp.png │ ├── ic_add_grey600_24dp.png │ ├── ic_create_grey600_24dp.png │ ├── ic_event_white_24dp.png │ ├── ic_mic_grey600_24dp.png │ ├── ic_photo_camera_grey600_24dp.png │ ├── ic_place_white_24dp.png │ └── ic_search_white_24dp.png │ ├── layout │ ├── activity_main.xml │ ├── fragment_all.xml │ ├── fragment_favorites.xml │ ├── fragment_shared.xml │ ├── layout_drawer_header.xml │ └── list_item_note.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-v21 │ ├── dimens.xml │ └── styles.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCEDURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/RELEASE_PROCEDURE.md -------------------------------------------------------------------------------- /art/bgmonitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/art/bgmonitor.gif -------------------------------------------------------------------------------- /art/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/art/sample1.png -------------------------------------------------------------------------------- /art/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/art/sample2.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/gradlew.bat -------------------------------------------------------------------------------- /material-sheet-fab/bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/bintray.gradle -------------------------------------------------------------------------------- /material-sheet-fab/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/build.gradle -------------------------------------------------------------------------------- /material-sheet-fab/maven.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/maven.gradle -------------------------------------------------------------------------------- /material-sheet-fab/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/AnimatedFab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/AnimatedFab.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/DimOverlayFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/DimOverlayFrameLayout.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/MaterialSheetFab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/MaterialSheetFab.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/MaterialSheetFabEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/MaterialSheetFabEventListener.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/AnimationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/AnimationListener.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/FabAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/FabAnimation.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/MaterialSheetAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/MaterialSheetAnimation.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/OverlayAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/com/gordonwong/materialsheetfab/animations/OverlayAnimation.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/animation/RevealAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/animation/RevealAnimator.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/animation/SupportAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/animation/SupportAnimator.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/animation/SupportAnimatorLollipop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/animation/SupportAnimatorLollipop.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/animation/SupportAnimatorPreL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/animation/SupportAnimatorPreL.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/animation/ViewAnimationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/animation/ViewAnimationUtils.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/widget/RevealFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/widget/RevealFrameLayout.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/java/io/codetail/widget/RevealLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/java/io/codetail/widget/RevealLinearLayout.java -------------------------------------------------------------------------------- /material-sheet-fab/src/main/res/layout/dim_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/res/layout/dim_overlay.xml -------------------------------------------------------------------------------- /material-sheet-fab/src/main/res/values-v21/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/res/values-v21/refs.xml -------------------------------------------------------------------------------- /material-sheet-fab/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /material-sheet-fab/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/material-sheet-fab/src/main/res/values/refs.xml -------------------------------------------------------------------------------- /sample-apks/sample-release-1-0-1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample-apks/sample-release-1-0-1.apk -------------------------------------------------------------------------------- /sample-apks/sample-release-1-0-2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample-apks/sample-release-1-0-2.apk -------------------------------------------------------------------------------- /sample-apks/sample-release-1-0-3.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample-apks/sample-release-1-0-3.apk -------------------------------------------------------------------------------- /sample-apks/sample-release-1-0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample-apks/sample-release-1-0.apk -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/Fab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/Fab.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/adapters/MainPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/adapters/MainPagerAdapter.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/adapters/NotesAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/adapters/NotesAdapter.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/AllFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/AllFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/FavoritesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/FavoritesFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/NotesListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/NotesListFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/SharedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/fragments/SharedFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/gordonwong/materialsheetfab/sample/models/Note.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/java/com/gordonwong/materialsheetfab/sample/models/Note.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_access_alarms_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_access_alarms_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_add_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_add_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_create_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_create_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_event_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_event_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_mic_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_mic_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_photo_camera_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_photo_camera_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_place_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_place_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_access_alarms_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_access_alarms_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_add_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_add_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_create_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_create_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_event_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_event_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_mic_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_mic_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_photo_camera_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_photo_camera_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_place_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_place_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_access_alarms_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_access_alarms_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_add_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_add_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_create_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_create_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_event_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_event_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_mic_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_mic_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_photo_camera_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_photo_camera_grey600_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_place_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_place_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/fragment_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/layout/fragment_all.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/fragment_favorites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/layout/fragment_favorites.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/fragment_shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/layout/fragment_shared.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/layout_drawer_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/layout/layout_drawer_header.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/list_item_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/layout/list_item_note.xml -------------------------------------------------------------------------------- /sample/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values-v21/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/values-v21/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowong/material-sheet-fab/HEAD/settings.gradle --------------------------------------------------------------------------------