├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── libraries │ ├── play_services_base_6_5_87.xml │ ├── play_services_wearable_6_5_87.xml │ ├── recyclerview_v7_21_0_0.xml │ ├── support_annotations_21_0_0.xml │ ├── support_v4_21_0_0.xml │ └── wearable_1_1_0.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── LICENSE ├── README.md ├── WearMenu.iml ├── WearSample - WearMenu.iml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── wear ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── tutosandroidfrance │ │ │ └── wearsample │ │ │ ├── Element.java │ │ │ ├── ElementGridPagerAdapter.java │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable │ │ ├── ic_car.png │ │ ├── ic_notif.png │ │ ├── ic_picture.png │ │ ├── ic_speak.png │ │ ├── wearmenu.gif │ │ ├── wearmenu_background.png │ │ ├── wearmenu_poster.png │ │ └── wearmenu_small.png │ │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_action.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── wear.iml └── wearmenu ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── ApplicationTest.java └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── florent37 │ │ ├── WearMenu.java │ │ ├── WearMenuListItemLayout.java │ │ ├── WearMenuListListViewAdapter.java │ │ └── WearMenuListViewAdapterViewHolder.java │ └── res │ ├── drawable │ └── wl_circle.xml │ ├── layout │ ├── wearmenu_list.xml │ └── wearmenu_list_element.xml │ └── values │ ├── attrs.xml │ └── strings.xml └── wearmenu.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | WearMenu -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_base_6_5_87.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/libraries/play_services_base_6_5_87.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_wearable_6_5_87.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/libraries/play_services_wearable_6_5_87.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_21_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/libraries/recyclerview_v7_21_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_21_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/libraries/support_annotations_21_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_21_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/libraries/support_v4_21_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/wearable_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/libraries/wearable_1_1_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/README.md -------------------------------------------------------------------------------- /WearMenu.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/WearMenu.iml -------------------------------------------------------------------------------- /WearSample - WearMenu.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/WearSample - WearMenu.iml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/settings.gradle -------------------------------------------------------------------------------- /wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wear/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/build.gradle -------------------------------------------------------------------------------- /wear/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/proguard-rules.pro -------------------------------------------------------------------------------- /wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wear/src/main/java/com/tutosandroidfrance/wearsample/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/java/com/tutosandroidfrance/wearsample/Element.java -------------------------------------------------------------------------------- /wear/src/main/java/com/tutosandroidfrance/wearsample/ElementGridPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/java/com/tutosandroidfrance/wearsample/ElementGridPagerAdapter.java -------------------------------------------------------------------------------- /wear/src/main/java/com/tutosandroidfrance/wearsample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/java/com/tutosandroidfrance/wearsample/MainActivity.java -------------------------------------------------------------------------------- /wear/src/main/res/drawable/ic_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/ic_car.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/ic_notif.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable/ic_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/ic_picture.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable/ic_speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/ic_speak.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable/wearmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/wearmenu.gif -------------------------------------------------------------------------------- /wear/src/main/res/drawable/wearmenu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/wearmenu_background.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable/wearmenu_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/wearmenu_poster.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable/wearmenu_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/drawable/wearmenu_small.png -------------------------------------------------------------------------------- /wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /wear/src/main/res/layout/fragment_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/layout/fragment_action.xml -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wear/wear.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wear/wear.iml -------------------------------------------------------------------------------- /wearmenu/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wearmenu/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/build.gradle -------------------------------------------------------------------------------- /wearmenu/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/proguard-rules.pro -------------------------------------------------------------------------------- /wearmenu/src/androidTest/java/com/github/florent37/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/androidTest/java/com/github/florent37/ApplicationTest.java -------------------------------------------------------------------------------- /wearmenu/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wearmenu/src/main/java/com/github/florent37/WearMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/java/com/github/florent37/WearMenu.java -------------------------------------------------------------------------------- /wearmenu/src/main/java/com/github/florent37/WearMenuListItemLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/java/com/github/florent37/WearMenuListItemLayout.java -------------------------------------------------------------------------------- /wearmenu/src/main/java/com/github/florent37/WearMenuListListViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/java/com/github/florent37/WearMenuListListViewAdapter.java -------------------------------------------------------------------------------- /wearmenu/src/main/java/com/github/florent37/WearMenuListViewAdapterViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/java/com/github/florent37/WearMenuListViewAdapterViewHolder.java -------------------------------------------------------------------------------- /wearmenu/src/main/res/drawable/wl_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/res/drawable/wl_circle.xml -------------------------------------------------------------------------------- /wearmenu/src/main/res/layout/wearmenu_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/res/layout/wearmenu_list.xml -------------------------------------------------------------------------------- /wearmenu/src/main/res/layout/wearmenu_list_element.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/res/layout/wearmenu_list_element.xml -------------------------------------------------------------------------------- /wearmenu/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /wearmenu/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wearmenu/wearmenu.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/WearMenu/HEAD/wearmenu/wearmenu.iml --------------------------------------------------------------------------------