├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ ├── animated_vector_drawable_24_0_0.xml │ ├── answers_1_3_1.xml │ ├── appcompat_v7_24_0_0.xml │ ├── beta_1_1_3.xml │ ├── cardview_v7_24_0_0.xml │ ├── crashlytics_2_5_1.xml │ ├── crashlytics_core_2_3_4.xml │ ├── fabric_1_3_5.xml │ ├── hamcrest_core_1_3.xml │ ├── junit_4_12.xml │ ├── library_2_4_0.xml │ ├── picasso_2_5_2.xml │ ├── recyclerview_v7_24_0_0.xml │ ├── support_annotations_24_0_0.xml │ ├── support_v4_24_0_0.xml │ └── support_vector_drawable_24_0_0.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── MaterialLeanBack.iml ├── README.md ├── gradle.properties ├── gradle ├── bintray-android-v1.gradle ├── bintray-java-v1.gradle ├── install-v1.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── materialleanback ├── .gitignore ├── build.gradle ├── materialleanback.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── materialleanback │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── florent37 │ │ │ └── materialleanback │ │ │ ├── MaterialLeanBack.java │ │ │ ├── MaterialLeanBackSettings.java │ │ │ ├── OnItemClickListenerWrapper.java │ │ │ ├── PlaceHolderViewHolder.java │ │ │ ├── cell │ │ │ ├── CellAdapter.java │ │ │ └── CellViewHolder.java │ │ │ └── line │ │ │ ├── LineAdapter.java │ │ │ └── LineViewHolder.java │ └── res │ │ ├── layout │ │ ├── mlb_cell.xml │ │ ├── mlb_layout.xml │ │ ├── mlb_placeholder.xml │ │ ├── mlb_placeholder_end.xml │ │ ├── mlb_placeholder_vertical.xml │ │ └── mlb_row.xml │ │ └── values │ │ ├── attrs.xml │ │ └── dimens.xml │ └── test │ └── java │ └── com │ └── github │ └── florent37 │ └── materialleanback │ └── ExampleUnitTest.java ├── sample ├── .gitignore ├── build.gradle ├── keyInfos.properties ├── proguard-rules.pro ├── sample.iml └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── mobileleanback │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── florent37 │ │ │ └── materialleanback │ │ │ └── sample │ │ │ ├── MainActivity.java │ │ │ └── TestViewHolder.java │ └── res │ │ ├── drawable │ │ ├── montain.jpg │ │ ├── shadow_down.xml │ │ └── shadow_up.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── cell_test.xml │ │ ├── drawer.xml │ │ └── header.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── github │ └── florent37 │ └── mobileleanback │ └── ExampleUnitTest.java ├── screens ├── 1024.png ├── 1024.psd ├── 512.png ├── device-2015-08-31-144850.png ├── sample.gif ├── sample.mp4 ├── sample.png ├── sample_2.gif ├── sample_399.png └── sample_small.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/animated_vector_drawable_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/animated_vector_drawable_24_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/answers_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/answers_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/appcompat_v7_24_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/beta_1_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/beta_1_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/cardview_v7_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/cardview_v7_24_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/crashlytics_2_5_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/crashlytics_2_5_1.xml -------------------------------------------------------------------------------- /.idea/libraries/crashlytics_core_2_3_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/crashlytics_core_2_3_4.xml -------------------------------------------------------------------------------- /.idea/libraries/fabric_1_3_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/fabric_1_3_5.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/library_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/library_2_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/picasso_2_5_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/picasso_2_5_2.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/recyclerview_v7_24_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/support_annotations_24_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/support_v4_24_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_vector_drawable_24_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/libraries/support_vector_drawable_24_0_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/LICENSE -------------------------------------------------------------------------------- /MaterialLeanBack.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/MaterialLeanBack.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/bintray-android-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradle/bintray-android-v1.gradle -------------------------------------------------------------------------------- /gradle/bintray-java-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradle/bintray-java-v1.gradle -------------------------------------------------------------------------------- /gradle/install-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradle/install-v1.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/gradlew.bat -------------------------------------------------------------------------------- /materialleanback/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /materialleanback/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/build.gradle -------------------------------------------------------------------------------- /materialleanback/materialleanback.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/materialleanback.iml -------------------------------------------------------------------------------- /materialleanback/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/proguard-rules.pro -------------------------------------------------------------------------------- /materialleanback/src/androidTest/java/com/github/florent37/materialleanback/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/androidTest/java/com/github/florent37/materialleanback/ApplicationTest.java -------------------------------------------------------------------------------- /materialleanback/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/MaterialLeanBack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/MaterialLeanBack.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/MaterialLeanBackSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/MaterialLeanBackSettings.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/OnItemClickListenerWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/OnItemClickListenerWrapper.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/PlaceHolderViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/PlaceHolderViewHolder.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/cell/CellAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/cell/CellAdapter.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/cell/CellViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/cell/CellViewHolder.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/line/LineAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/line/LineAdapter.java -------------------------------------------------------------------------------- /materialleanback/src/main/java/com/github/florent37/materialleanback/line/LineViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/java/com/github/florent37/materialleanback/line/LineViewHolder.java -------------------------------------------------------------------------------- /materialleanback/src/main/res/layout/mlb_cell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/layout/mlb_cell.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/layout/mlb_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/layout/mlb_layout.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/layout/mlb_placeholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/layout/mlb_placeholder.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/layout/mlb_placeholder_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/layout/mlb_placeholder_end.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/layout/mlb_placeholder_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/layout/mlb_placeholder_vertical.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/layout/mlb_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/layout/mlb_row.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /materialleanback/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /materialleanback/src/test/java/com/github/florent37/materialleanback/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/materialleanback/src/test/java/com/github/florent37/materialleanback/ExampleUnitTest.java -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/.gitignore -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/keyInfos.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/keyInfos.properties -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/sample.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/sample.iml -------------------------------------------------------------------------------- /sample/src/androidTest/java/com/github/florent37/mobileleanback/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/androidTest/java/com/github/florent37/mobileleanback/ApplicationTest.java -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/github/florent37/materialleanback/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/java/com/github/florent37/materialleanback/sample/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/github/florent37/materialleanback/sample/TestViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/java/com/github/florent37/materialleanback/sample/TestViewHolder.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable/montain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/drawable/montain.jpg -------------------------------------------------------------------------------- /sample/src/main/res/drawable/shadow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/drawable/shadow_down.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/shadow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/drawable/shadow_up.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/cell_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/layout/cell_test.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/layout/drawer.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/layout/header.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/test/java/com/github/florent37/mobileleanback/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/sample/src/test/java/com/github/florent37/mobileleanback/ExampleUnitTest.java -------------------------------------------------------------------------------- /screens/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/1024.png -------------------------------------------------------------------------------- /screens/1024.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/1024.psd -------------------------------------------------------------------------------- /screens/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/512.png -------------------------------------------------------------------------------- /screens/device-2015-08-31-144850.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/device-2015-08-31-144850.png -------------------------------------------------------------------------------- /screens/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/sample.gif -------------------------------------------------------------------------------- /screens/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/sample.mp4 -------------------------------------------------------------------------------- /screens/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/sample.png -------------------------------------------------------------------------------- /screens/sample_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/sample_2.gif -------------------------------------------------------------------------------- /screens/sample_399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/sample_399.png -------------------------------------------------------------------------------- /screens/sample_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/MaterialLeanBack/HEAD/screens/sample_small.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':materialleanback', ':sample' 2 | --------------------------------------------------------------------------------