├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── LICENSE.txt ├── README.md ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── drawable-mdpi │ ├── bg.png │ ├── centerbutton.png │ ├── ic_action_search.png │ ├── ic_launcher.png │ ├── icon0.png │ ├── icon1.png │ ├── icon2.png │ ├── icon3.png │ ├── icon4.png │ ├── icon5.png │ ├── icon6.png │ ├── icon7.png │ └── segment.png ├── drawable-xhdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── drawable │ ├── bg.png │ └── wheel_bg.xml ├── layout │ ├── activity_main.xml │ └── list_item.xml ├── menu │ └── activity_main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com ├── activity └── rotarywheel │ └── MainActivity.java └── rotarywheelview ├── RotaryWheelMenuEntry.java ├── RotaryWheelView.java └── RotaryWheelViewListener.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/README.md -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/bg.png -------------------------------------------------------------------------------- /res/drawable-mdpi/centerbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/centerbutton.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon0.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon1.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon3.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon4.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon5.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon6.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/icon7.png -------------------------------------------------------------------------------- /res/drawable-mdpi/segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-mdpi/segment.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable/bg.png -------------------------------------------------------------------------------- /res/drawable/wheel_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/drawable/wheel_bg.xml -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/layout/list_item.xml -------------------------------------------------------------------------------- /res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/menu/activity_main.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/activity/rotarywheel/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/src/com/activity/rotarywheel/MainActivity.java -------------------------------------------------------------------------------- /src/com/rotarywheelview/RotaryWheelMenuEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/src/com/rotarywheelview/RotaryWheelMenuEntry.java -------------------------------------------------------------------------------- /src/com/rotarywheelview/RotaryWheelView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/src/com/rotarywheelview/RotaryWheelView.java -------------------------------------------------------------------------------- /src/com/rotarywheelview/RotaryWheelViewListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R4md4c/AndroidRotaryWheelView/HEAD/src/com/rotarywheelview/RotaryWheelViewListener.java --------------------------------------------------------------------------------