├── LightWeight2 └── LightWeight │ ├── .gitignore │ ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── adb │ ├── app │ ├── .gitignore │ ├── app-release.apk │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── samarth │ │ │ └── lightweight │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── samarth │ │ │ │ └── lightweight │ │ │ │ ├── NetowrkConnection.java │ │ │ │ ├── base_Activity.java │ │ │ │ ├── database │ │ │ │ ├── databasehandler.java │ │ │ │ ├── food_category_adapter.java │ │ │ │ ├── food_description_adapter.java │ │ │ │ ├── food_items_model.java │ │ │ │ └── recycler_view_divider.java │ │ │ │ ├── fragments │ │ │ │ ├── BodyfatPercentage.java │ │ │ │ ├── bmi.java │ │ │ │ ├── bmr.java │ │ │ │ ├── foodCategory.java │ │ │ │ ├── food_item_description.java │ │ │ │ ├── measurement_dictionary.java │ │ │ │ └── waist_to_height.java │ │ │ │ ├── helpandinfo.java │ │ │ │ └── intoduction_activity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── girl.png │ │ │ ├── girl_selected.png │ │ │ ├── man_silhouette.png │ │ │ └── man_silhouette_selected.png │ │ │ ├── drawable-mdpi │ │ │ ├── calories.png │ │ │ ├── diet.png │ │ │ ├── ic_arrow_drop_down_white_24dp.png │ │ │ ├── ic_arrow_drop_up_white_24dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── ic_help_outline_white_24dp.png │ │ │ ├── ic_info_outline_white_24dp.png │ │ │ ├── ic_search_white_24dp.png │ │ │ ├── percent.png │ │ │ ├── pulse.png │ │ │ ├── scales.png │ │ │ ├── share.png │ │ │ └── star.png │ │ │ ├── drawable-v21 │ │ │ ├── ic_menu_camera.xml │ │ │ ├── ic_menu_gallery.xml │ │ │ ├── ic_menu_manage.xml │ │ │ ├── ic_menu_send.xml │ │ │ ├── ic_menu_share.xml │ │ │ └── ic_menu_slideshow.xml │ │ │ ├── drawable-xhdpi │ │ │ └── icon111.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── header_image.jpg │ │ │ ├── drawable │ │ │ ├── back_2.jpg │ │ │ ├── button.xml │ │ │ ├── food_category1.jpg │ │ │ ├── ic_1.png │ │ │ ├── ic_2.png │ │ │ ├── ic_3.png │ │ │ ├── ic_4.png │ │ │ ├── ic_5.png │ │ │ ├── ic_6.png │ │ │ ├── ic_7.png │ │ │ ├── ic_8.png │ │ │ ├── ic_arrow_drop_down_black_18dp.png │ │ │ ├── placeholder_1.jpg │ │ │ ├── round.xml │ │ │ ├── rounded_corner.xml │ │ │ ├── side_nav_bar.xml │ │ │ └── spinner_back.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── bmi.xml │ │ │ ├── bmr.xml │ │ │ ├── bodyfatpercent.xml │ │ │ ├── card.xml │ │ │ ├── food_category.xml │ │ │ ├── food_description.xml │ │ │ ├── food_description_layout.xml │ │ │ ├── header_recycle_view.xml │ │ │ ├── helpandinfo.xml │ │ │ ├── introduction_activity.xml │ │ │ ├── measurement_dictionary.xml │ │ │ ├── nav_header_main.xml │ │ │ ├── toolbar.xml │ │ │ └── waist_to_height.xml │ │ │ ├── menu │ │ │ ├── activity_main_drawer.xml │ │ │ └── main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── searchable.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── samarth │ │ └── lightweight │ │ └── ExampleUnitTest.java │ ├── bugreport.txt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── README.md └── privacy_policy (1).html /LightWeight2/LightWeight/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.gitignore -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/compiler.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/encodings.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/gradle.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/misc.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/modules.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/adb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/app-release.apk -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/build.gradle -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/google-services.json -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/proguard-rules.pro -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/androidTest/java/com/samarth/lightweight/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/androidTest/java/com/samarth/lightweight/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/NetowrkConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/NetowrkConnection.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/base_Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/base_Activity.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/databasehandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/databasehandler.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/food_category_adapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/food_category_adapter.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/food_description_adapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/food_description_adapter.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/food_items_model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/food_items_model.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/recycler_view_divider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/database/recycler_view_divider.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/BodyfatPercentage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/BodyfatPercentage.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/bmi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/bmi.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/bmr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/bmr.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/foodCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/foodCategory.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/food_item_description.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/food_item_description.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/measurement_dictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/measurement_dictionary.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/waist_to_height.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/fragments/waist_to_height.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/helpandinfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/helpandinfo.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/intoduction_activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/java/com/samarth/lightweight/intoduction_activity.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/girl.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/girl_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/girl_selected.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/man_silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/man_silhouette.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/man_silhouette_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-hdpi/man_silhouette_selected.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/calories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/calories.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/diet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/diet.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_arrow_drop_down_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_arrow_drop_down_white_24dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_arrow_drop_up_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_arrow_drop_up_white_24dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_autorenew_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_autorenew_white_24dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_help_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_help_outline_white_24dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_info_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_info_outline_white_24dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/percent.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/pulse.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/scales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/scales.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/share.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-mdpi/star.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_gallery.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_manage.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_send.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_share.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-v21/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-xhdpi/icon111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-xhdpi/icon111.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable-xxxhdpi/header_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable-xxxhdpi/header_image.jpg -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/back_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/back_2.jpg -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/button.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/food_category1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/food_category1.jpg -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_1.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_2.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_3.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_4.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_5.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_6.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_7.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_8.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/ic_arrow_drop_down_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/ic_arrow_drop_down_black_18dp.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/placeholder_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/placeholder_1.jpg -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/round.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/rounded_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/rounded_corner.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/drawable/spinner_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/drawable/spinner_back.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/bmi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/bmi.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/bmr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/bmr.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/bodyfatpercent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/bodyfatpercent.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/card.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/food_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/food_category.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/food_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/food_description.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/food_description_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/food_description_layout.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/header_recycle_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/header_recycle_view.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/helpandinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/helpandinfo.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/introduction_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/introduction_activity.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/measurement_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/measurement_dictionary.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/toolbar.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/layout/waist_to_height.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/layout/waist_to_height.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /LightWeight2/LightWeight/app/src/test/java/com/samarth/lightweight/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/app/src/test/java/com/samarth/lightweight/ExampleUnitTest.java -------------------------------------------------------------------------------- /LightWeight2/LightWeight/bugreport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/bugreport.txt -------------------------------------------------------------------------------- /LightWeight2/LightWeight/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/build.gradle -------------------------------------------------------------------------------- /LightWeight2/LightWeight/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/gradle.properties -------------------------------------------------------------------------------- /LightWeight2/LightWeight/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LightWeight2/LightWeight/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /LightWeight2/LightWeight/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/gradlew -------------------------------------------------------------------------------- /LightWeight2/LightWeight/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/gradlew.bat -------------------------------------------------------------------------------- /LightWeight2/LightWeight/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/LightWeight2/LightWeight/settings.gradle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/README.md -------------------------------------------------------------------------------- /privacy_policy (1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samarth220194/Health-Calculator-and-Food-Calories/HEAD/privacy_policy (1).html --------------------------------------------------------------------------------