├── .gitignore ├── README.md ├── docs ├── activity-showcase-animation-1-small.png ├── activity-showcase-animation-1.png ├── activity-showcase-animation-2-small.png ├── activity-showcase-animation-2.png ├── activity-under-showcase-small.png └── activity-under-showcase.png ├── pom.xml ├── robodemo-lib-1.0.0.apklib ├── robodemo-lib-1.0.0.jar ├── robodemo-lib ├── AndroidManifest.xml ├── ic_launcher-web.png ├── pom.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_lockscreen_handle_pressed.png │ ├── drawable-mdpi │ │ └── ic_lockscreen_handle_pressed.png │ ├── drawable-xhdpi │ │ └── ic_lockscreen_handle_pressed.png │ ├── layout │ │ └── activity_demo.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── octo │ └── android │ └── robodemo │ ├── DefaultDrawViewAdapter.java │ ├── DemoActivity.java │ ├── DrawView.java │ ├── DrawViewAdapter.java │ ├── LabeledPoint.java │ └── RoboDemo.java └── robodemo-sample ├── AndroidManifest.xml ├── pom.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_action_search.png │ ├── ic_launcher.png │ └── ic_menu_refresh.png ├── drawable-ldpi │ └── ic_menu_refresh.png ├── drawable-mdpi │ ├── ic_action_search.png │ ├── ic_launcher.png │ └── ic_menu_refresh.png ├── drawable-xhdpi │ ├── ic_action_search.png │ ├── ic_launcher.png │ └── ic_menu_refresh.png ├── layout │ └── activity_main.xml ├── menu │ └── activity_main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml ├── screenshots ├── Screenshot_2012-11-17-10-08-44.png ├── Screenshot_2012-11-17-10-08-51.png └── android-teacher.jpg └── src └── com └── octo └── android └── robodemo └── sample ├── MainActivity.java └── MainActivityDemoActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/README.md -------------------------------------------------------------------------------- /docs/activity-showcase-animation-1-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/docs/activity-showcase-animation-1-small.png -------------------------------------------------------------------------------- /docs/activity-showcase-animation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/docs/activity-showcase-animation-1.png -------------------------------------------------------------------------------- /docs/activity-showcase-animation-2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/docs/activity-showcase-animation-2-small.png -------------------------------------------------------------------------------- /docs/activity-showcase-animation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/docs/activity-showcase-animation-2.png -------------------------------------------------------------------------------- /docs/activity-under-showcase-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/docs/activity-under-showcase-small.png -------------------------------------------------------------------------------- /docs/activity-under-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/docs/activity-under-showcase.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/pom.xml -------------------------------------------------------------------------------- /robodemo-lib-1.0.0.apklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib-1.0.0.apklib -------------------------------------------------------------------------------- /robodemo-lib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib-1.0.0.jar -------------------------------------------------------------------------------- /robodemo-lib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/AndroidManifest.xml -------------------------------------------------------------------------------- /robodemo-lib/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/ic_launcher-web.png -------------------------------------------------------------------------------- /robodemo-lib/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/pom.xml -------------------------------------------------------------------------------- /robodemo-lib/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/proguard-project.txt -------------------------------------------------------------------------------- /robodemo-lib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/project.properties -------------------------------------------------------------------------------- /robodemo-lib/res/drawable-hdpi/ic_lockscreen_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/res/drawable-hdpi/ic_lockscreen_handle_pressed.png -------------------------------------------------------------------------------- /robodemo-lib/res/drawable-mdpi/ic_lockscreen_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/res/drawable-mdpi/ic_lockscreen_handle_pressed.png -------------------------------------------------------------------------------- /robodemo-lib/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png -------------------------------------------------------------------------------- /robodemo-lib/res/layout/activity_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/res/layout/activity_demo.xml -------------------------------------------------------------------------------- /robodemo-lib/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/res/values/strings.xml -------------------------------------------------------------------------------- /robodemo-lib/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/res/values/styles.xml -------------------------------------------------------------------------------- /robodemo-lib/src/com/octo/android/robodemo/DefaultDrawViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/src/com/octo/android/robodemo/DefaultDrawViewAdapter.java -------------------------------------------------------------------------------- /robodemo-lib/src/com/octo/android/robodemo/DemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/src/com/octo/android/robodemo/DemoActivity.java -------------------------------------------------------------------------------- /robodemo-lib/src/com/octo/android/robodemo/DrawView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/src/com/octo/android/robodemo/DrawView.java -------------------------------------------------------------------------------- /robodemo-lib/src/com/octo/android/robodemo/DrawViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/src/com/octo/android/robodemo/DrawViewAdapter.java -------------------------------------------------------------------------------- /robodemo-lib/src/com/octo/android/robodemo/LabeledPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/src/com/octo/android/robodemo/LabeledPoint.java -------------------------------------------------------------------------------- /robodemo-lib/src/com/octo/android/robodemo/RoboDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-lib/src/com/octo/android/robodemo/RoboDemo.java -------------------------------------------------------------------------------- /robodemo-sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/AndroidManifest.xml -------------------------------------------------------------------------------- /robodemo-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/pom.xml -------------------------------------------------------------------------------- /robodemo-sample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/proguard-project.txt -------------------------------------------------------------------------------- /robodemo-sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/project.properties -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-hdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-hdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-ldpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-ldpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-mdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-mdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /robodemo-sample/res/drawable-xhdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/drawable-xhdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /robodemo-sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /robodemo-sample/res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/menu/activity_main.xml -------------------------------------------------------------------------------- /robodemo-sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /robodemo-sample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /robodemo-sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/values/strings.xml -------------------------------------------------------------------------------- /robodemo-sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/res/values/styles.xml -------------------------------------------------------------------------------- /robodemo-sample/screenshots/Screenshot_2012-11-17-10-08-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/screenshots/Screenshot_2012-11-17-10-08-44.png -------------------------------------------------------------------------------- /robodemo-sample/screenshots/Screenshot_2012-11-17-10-08-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/screenshots/Screenshot_2012-11-17-10-08-51.png -------------------------------------------------------------------------------- /robodemo-sample/screenshots/android-teacher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/screenshots/android-teacher.jpg -------------------------------------------------------------------------------- /robodemo-sample/src/com/octo/android/robodemo/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/src/com/octo/android/robodemo/sample/MainActivity.java -------------------------------------------------------------------------------- /robodemo-sample/src/com/octo/android/robodemo/sample/MainActivityDemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanenicolas/RoboDemo/HEAD/robodemo-sample/src/com/octo/android/robodemo/sample/MainActivityDemoActivity.java --------------------------------------------------------------------------------