├── .gitattributes ├── .gitignore ├── .gradle └── 2.14.1 │ ├── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── fileSnapshotsToTreeSnapshotsIndex.bin │ └── taskArtifacts.bin │ └── tasks │ ├── _app_compileDebugJavaWithJavac │ ├── localClassSetAnalysis │ │ ├── localClassSetAnalysis.bin │ │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ │ ├── localJarClasspathSnapshot.bin │ │ └── localJarClasspathSnapshot.lock │ └── _mylibrary_compileReleaseJavaWithJavac │ ├── localClassSetAnalysis │ ├── localClassSetAnalysis.bin │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ ├── localJarClasspathSnapshot.bin │ └── localJarClasspathSnapshot.lock ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── libraries │ ├── animated_vector_drawable_25_1_0.xml │ ├── appcompat_v7_25_1_0.xml │ ├── butterknife_7_0_1.xml │ ├── design_25_1_0.xml │ ├── espresso_core_2_2_2.xml │ ├── espresso_idling_resource_2_2_2.xml │ ├── exposed_instrumentation_api_publish_0_5.xml │ ├── glide_3_7_0.xml │ ├── glide_transformations_1_3_1.xml │ ├── gson_2_2_4.xml │ ├── hamcrest_core_1_3.xml │ ├── hamcrest_integration_1_3.xml │ ├── hamcrest_library_1_3.xml │ ├── javawriter_2_1_1.xml │ ├── javax_annotation_api_1_2.xml │ ├── javax_inject_1.xml │ ├── jsr305_2_0_1.xml │ ├── junit_4_12.xml │ ├── qcodelib_1_0_1.xml │ ├── recyclerview_v7_25_1_0.xml │ ├── rules_0_5.xml │ ├── runner_0_5.xml │ ├── support_annotations_25_1_0.xml │ ├── support_compat_25_1_0.xml │ ├── support_core_ui_25_1_0.xml │ ├── support_core_utils_25_1_0.xml │ ├── support_fragment_25_1_0.xml │ ├── support_media_compat_25_1_0.xml │ ├── support_v4_25_1_0.xml │ ├── support_vector_drawable_25_1_0.xml │ └── transition_25_1_0.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── workspace.xml ├── MyApplication.iml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ └── gson-2.2.4.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sxwz │ │ └── myapplication │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── sxwz │ │ │ └── myapplication │ │ │ ├── MainActivity.java │ │ │ ├── adapter │ │ │ ├── FragmentAdapter.java │ │ │ └── LeftAdapter.java │ │ │ ├── entity │ │ │ ├── Cart.java │ │ │ ├── DataResult.java │ │ │ └── Product.java │ │ │ ├── fragment │ │ │ ├── BusinessFragment.java │ │ │ ├── ProductFragment.java │ │ │ └── ReviewFragment.java │ │ │ ├── ui │ │ │ └── ProductByActivity.java │ │ │ └── utils │ │ │ ├── Parser.java │ │ │ ├── UIHelper.java │ │ │ └── Utils.java │ └── res │ │ ├── anim │ │ ├── pophidden_anim.xml │ │ └── popshow_anim.xml │ │ ├── drawable │ │ ├── bg_choice_press_round.xml │ │ ├── bg_choice_round.xml │ │ ├── list_selector_product_bg.xml │ │ └── sum_yuan.xml │ │ ├── layout │ │ ├── business_view.xml │ │ ├── cart_item.xml │ │ ├── popu_cart.xml │ │ ├── product_by_view.xml │ │ ├── product_item.xml │ │ ├── product_list.xml │ │ ├── product_menu_item.xml │ │ └── review_view.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── add.png │ │ ├── del.png │ │ ├── ic_launcher.png │ │ ├── icon_fansnum_like_on.png │ │ ├── icon_stub.png │ │ └── vo_or.png │ │ ├── mipmap-xxhdpi │ │ ├── cart12.png │ │ ├── cart13.png │ │ ├── default_icon.png │ │ ├── ic_launcher.png │ │ ├── jia.png │ │ └── jian.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── raw │ │ └── food_json.txt │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── sxwz │ └── myapplication │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── screen └── 应用宝动态截屏2017011101.gif └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/2.14.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Jan 05 15:22:54 CST 2017 2 | -------------------------------------------------------------------------------- /.gradle/2.14.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /.gradle/2.14.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin -------------------------------------------------------------------------------- /.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.gradle/2.14.1/tasks/_mylibrary_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/animated_vector_drawable_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/animated_vector_drawable_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/appcompat_v7_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/butterknife_7_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/butterknife_7_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/design_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/design_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/espresso_core_2_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/espresso_core_2_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/espresso_idling_resource_2_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/espresso_idling_resource_2_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/exposed_instrumentation_api_publish_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/exposed_instrumentation_api_publish_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/glide_3_7_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/glide_3_7_0.xml -------------------------------------------------------------------------------- /.idea/libraries/glide_transformations_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/glide_transformations_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/gson_2_2_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/gson_2_2_4.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_integration_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/hamcrest_integration_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/hamcrest_library_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/javawriter_2_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/javawriter_2_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_annotation_api_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/javax_annotation_api_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_inject_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/javax_inject_1.xml -------------------------------------------------------------------------------- /.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/jsr305_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/qcodelib_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/qcodelib_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/recyclerview_v7_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/rules_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/rules_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/runner_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/runner_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_annotations_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_compat_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_compat_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_core_ui_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_core_ui_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_core_utils_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_core_utils_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_fragment_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_fragment_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_media_compat_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_media_compat_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_v4_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_vector_drawable_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/support_vector_drawable_25_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/transition_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/libraries/transition_25_1_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /MyApplication.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/MyApplication.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/sxwz/myapplication/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/androidTest/java/com/sxwz/myapplication/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/adapter/FragmentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/adapter/FragmentAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/adapter/LeftAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/adapter/LeftAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/entity/Cart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/entity/Cart.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/entity/DataResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/entity/DataResult.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/entity/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/entity/Product.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/fragment/BusinessFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/fragment/BusinessFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/fragment/ProductFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/fragment/ProductFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/fragment/ReviewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/fragment/ReviewFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/ui/ProductByActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/ui/ProductByActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/utils/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/utils/Parser.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/utils/UIHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/utils/UIHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/sxwz/myapplication/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/java/com/sxwz/myapplication/utils/Utils.java -------------------------------------------------------------------------------- /app/src/main/res/anim/pophidden_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/anim/pophidden_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/popshow_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/anim/popshow_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_choice_press_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/drawable/bg_choice_press_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_choice_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/drawable/bg_choice_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/list_selector_product_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/drawable/list_selector_product_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/sum_yuan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/drawable/sum_yuan.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/business_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/business_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/cart_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/cart_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/popu_cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/popu_cart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/product_by_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/product_by_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/product_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/product_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/product_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/product_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/product_menu_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/product_menu_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/review_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/layout/review_view.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xhdpi/add.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xhdpi/del.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_fansnum_like_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xhdpi/icon_fansnum_like_on.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_stub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xhdpi/icon_stub.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/vo_or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xhdpi/vo_or.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/cart12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxhdpi/cart12.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/cart13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxhdpi/cart13.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxhdpi/default_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxhdpi/jia.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxhdpi/jian.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/raw/food_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/raw/food_json.txt -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/sxwz/myapplication/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/app/src/test/java/com/sxwz/myapplication/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/local.properties -------------------------------------------------------------------------------- /screen/应用宝动态截屏2017011101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky0116/orderDishes/HEAD/screen/应用宝动态截屏2017011101.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------