├── bin ├── classes.dex ├── AndRedMenu.apk ├── resources.ap_ ├── com │ └── mindflakes │ │ └── andredmenu │ │ ├── R.class │ │ ├── R$attr.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ └── R$drawable.class └── main │ └── java │ └── com │ └── mindflakes │ └── andredmenu │ └── AndRedMenuActivity.class ├── res ├── drawable │ └── icon.png ├── layout │ ├── quick_row.xml │ ├── menu_list.xml │ ├── main.xml │ ├── search_list.xml │ ├── quick_view.xml │ ├── main_row.xml │ ├── search_view.xml │ └── settings_view.xml └── values │ └── strings.xml ├── .gitignore ├── default.properties ├── AndroidManifest.xml ├── pom.xml └── src └── main └── java └── com └── mindflakes └── TeamRED └── AndRedMenu ├── FullMenuListActivity.java ├── SearchActivity.java ├── SearchMenuListActivity.java ├── SettingsActivity.java ├── MainViewActivity.java ├── QuickViewActivity.java ├── MenuViewActivity.java └── MealMenuDBAdapter.java /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/classes.dex -------------------------------------------------------------------------------- /bin/AndRedMenu.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/AndRedMenu.apk -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/resources.ap_ -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/res/drawable/icon.png -------------------------------------------------------------------------------- /bin/com/mindflakes/andredmenu/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/com/mindflakes/andredmenu/R.class -------------------------------------------------------------------------------- /bin/com/mindflakes/andredmenu/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/com/mindflakes/andredmenu/R$attr.class -------------------------------------------------------------------------------- /bin/com/mindflakes/andredmenu/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/com/mindflakes/andredmenu/R$layout.class -------------------------------------------------------------------------------- /bin/com/mindflakes/andredmenu/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/com/mindflakes/andredmenu/R$string.class -------------------------------------------------------------------------------- /bin/com/mindflakes/andredmenu/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/com/mindflakes/andredmenu/R$drawable.class -------------------------------------------------------------------------------- /bin/main/java/com/mindflakes/andredmenu/AndRedMenuActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonjchen/AndRedMenu/master/bin/main/java/com/mindflakes/andredmenu/AndRedMenuActivity.class -------------------------------------------------------------------------------- /res/layout/quick_row.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .metadata 2 | tmp/** 3 | .DS_Store 4 | *.tmp 5 | *.bak 6 | tmp/**/* 7 | *.swp 8 | *~.nib 9 | Thumbs.db 10 | Desktop.ini 11 | *~ 12 | *.apk 13 | bin 14 | gen 15 | local.properties 16 | *.jar 17 | .classpath 18 | .project 19 | .settings/ 20 | target/ -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /res/layout/menu_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 14 | 18 | 19 | -------------------------------------------------------------------------------- /res/layout/search_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 14 | 18 | 19 | -------------------------------------------------------------------------------- /res/layout/quick_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 14 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/layout/main_row.xml: -------------------------------------------------------------------------------- 1 | 5 | 12 | 19 | 26 | 27 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /res/layout/search_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 19 | 25 | 29 |