commit 511cfa1dfaa4338da1a208a2cbbbebac24600c27 Author: adpth Date: Wed Oct 14 18:56:12 2020 +0530 BMI Calculator diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..603b140 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..34a0773 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +BMI Calculator \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..0d15693 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,134 @@ + + + + + + + + + + + +
+ + + + xmlns:android + + ^$ + + + +
+
+ + + + xmlns:.* + + ^$ + + + BY_NAME + +
+
+ + + + .*:id + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + .*:name + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + name + + ^$ + + + +
+
+ + + + style + + ^$ + + + +
+
+ + + + .* + + ^$ + + + BY_NAME + +
+
+ + + + .* + + http://schemas.android.com/apk/res/android + + + ANDROID_ATTRIBUTE_ORDER + +
+
+ + + + .* + + .* + + + BY_NAME + +
+
+
+
+
+
\ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..ac6b0ae --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,21 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..2370474 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..37a7509 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..67768b1 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,36 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 29 + buildToolsVersion "30.0.2" + + defaultConfig { + applicationId "com.adpth.bmicalculator" + minSdkVersion 16 + targetSdkVersion 29 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables.useSupportLibrary = true + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + implementation fileTree(dir: "libs", include: ["*.jar"]) + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.2' + implementation 'androidx.cardview:cardview:1.0.0' + testImplementation 'junit:junit:4.13' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' + implementation 'com.github.DanielMartinus:Stepper-Touch:0.6' + +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/adpth/bmicalculator/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/adpth/bmicalculator/ExampleInstrumentedTest.java new file mode 100644 index 0000000..336d8a2 --- /dev/null +++ b/app/src/androidTest/java/com/adpth/bmicalculator/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.adpth.bmicalculator; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.adpth.bmicalculator", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..6cea639 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/adpth/bmicalculator/Category.java b/app/src/main/java/com/adpth/bmicalculator/Category.java new file mode 100644 index 0000000..db429f5 --- /dev/null +++ b/app/src/main/java/com/adpth/bmicalculator/Category.java @@ -0,0 +1,26 @@ +package com.adpth.bmicalculator; + +public class Category { + + public String getCategory (float result) { + String category; + if (result < 15) { + category = "very severely underweight"; + } else if (result >=15 && result <= 16) { + category = "severely underweight"; + } else if (result >16 && result <= 18.5) { + category = "underweight"; + } else if (result >18.5 && result <= 25) { + category = "normal (healthy weight)"; + } else if (result >25 && result <= 30) { + category = "overweight"; + } else if (result >30 && result <= 35) { + category = "moderately obese"; + } else if (result >35 && result <= 40) { + category = "severely obese"; + } else { + category ="very severely obese"; + } + return category; + } +} diff --git a/app/src/main/java/com/adpth/bmicalculator/Condition.java b/app/src/main/java/com/adpth/bmicalculator/Condition.java new file mode 100644 index 0000000..cd849fc --- /dev/null +++ b/app/src/main/java/com/adpth/bmicalculator/Condition.java @@ -0,0 +1,27 @@ +package com.adpth.bmicalculator; + +public class Condition { + + public String getCategory (float result) { + String category; + if (result < 15) { + category = "Severe Thinness"; + } else if (result >=15 && result <= 16) { + category = "Moderate Thinness"; + } else if (result >16 && result <= 18.5) { + category = "Mild Thinness"; + } else if (result >18.5 && result <= 25) { + category = "Normal"; + } else if (result >25 && result <= 30) { + category = "Overweight"; + } else if (result >30 && result <= 35) { + category = "Obese Class I"; + } else if (result >35 && result <= 40) { + category = "Obese Class II"; + } else { + category ="Obese Class III"; + } + return category; + } + +} diff --git a/app/src/main/java/com/adpth/bmicalculator/MainActivity.java b/app/src/main/java/com/adpth/bmicalculator/MainActivity.java new file mode 100644 index 0000000..5c3ee92 --- /dev/null +++ b/app/src/main/java/com/adpth/bmicalculator/MainActivity.java @@ -0,0 +1,187 @@ +package com.adpth.bmicalculator; + +import androidx.appcompat.app.AppCompatActivity; +import androidx.cardview.widget.CardView; + +import android.content.Intent; +import android.graphics.Color; + +import android.os.Bundle; +import android.view.View; +import android.widget.Button; +import android.widget.ImageView; +import android.widget.RelativeLayout; +import android.widget.SeekBar; +import android.widget.TextView; + +public class MainActivity extends AppCompatActivity { + + float height,weight; + + TextView height_txt,age; + + int count_weight = 50,count_age = 19; + + RelativeLayout weight_plus, weight_minus, age_plus, age_minus; + + boolean male_clk = true, female_clk = true, check1 = true, check2 = true; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + height_txt = findViewById(R.id.height_txt); + + final TextView female_text = findViewById(R.id.female); + final TextView male_text = findViewById(R.id.male); + + CardView card_female = findViewById(R.id.cardView_female); + CardView card_male = findViewById(R.id.cardView_male); + + age_minus = findViewById(R.id.age_minus); + age_plus = findViewById(R.id.age_plus); + + weight_minus = findViewById(R.id.weight_minus); + weight_plus = findViewById(R.id.weight_plus); + + card_male.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + if (check1) { + + if (male_clk) { + + male_text.setTextColor(Color.parseColor("#FFFFFF")); + //male.setImageResource(R.drawable.male_white); + male_text.setCompoundDrawablesWithIntrinsicBounds(0,R.drawable.male_white,0,0); + male_clk = false; + check2 = false; + + } else { + + male_text.setTextColor(Color.parseColor("#8D8E99")); + //male.setImageResource(R.drawable.male); + male_text.setCompoundDrawablesWithIntrinsicBounds(0,R.drawable.male,0,0); + male_clk = true; + check2 = true; + } + } + } + }); + + card_female.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + if (check2) { + if (female_clk) { + female_text.setTextColor(Color.parseColor("#FFFFFF")); + female_text.setCompoundDrawablesWithIntrinsicBounds(0,R.drawable.female_white,0,0); + female_clk = false; + check1 = false; + } + else { + + female_text.setTextColor(Color.parseColor("#8D8E99")); + female_text.setCompoundDrawablesWithIntrinsicBounds(0,R.drawable.female,0,0); + female_clk = true; + check1 = true; + } + } + } + }); + + CheckSeekbarStatus(); + + CheckWeight(); + + CheckAge(); + + Button calculate = findViewById(R.id.calculate); + calculate.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + CalculateBMI(); + } + }); + + } + + + private void CheckAge() { + + age = findViewById(R.id.age); + + age_plus.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + count_age++; + age.setText(String.valueOf(count_age)); + } + }); + + age_minus.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + count_age--; + age.setText(String.valueOf(count_age)); + } + }); + } + + private void CheckWeight() { + + final TextView weight_txt = findViewById(R.id.weight); + + weight_plus.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + count_weight++; + weight_txt.setText(String.valueOf(count_weight)); + } + }); + + weight_minus.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + count_weight--; + weight_txt.setText(String.valueOf(count_weight)); + } + }); + + weight = Float.parseFloat(weight_txt.getText().toString()); + + } + + private void CheckSeekbarStatus() { + + SeekBar Seekbar = findViewById(R.id.Seekbar); + Seekbar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { + @Override + public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { + String ht = progress + getResources().getString(R.string.cm); + height_txt.setText(ht); + height = (float)(progress)/100; + } + + @Override + public void onStartTrackingTouch(SeekBar seekBar) { + + } + + @Override + public void onStopTrackingTouch(SeekBar seekBar) { + + } + }); + } + + private void CalculateBMI() { + + float BMI = weight / (height * height); + Intent intent = new Intent(MainActivity.this,ResultActivity.class); + intent.putExtra("BMI",BMI); + intent.putExtra("age",age.getText().toString()); + startActivity(intent); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/adpth/bmicalculator/ResultActivity.java b/app/src/main/java/com/adpth/bmicalculator/ResultActivity.java new file mode 100644 index 0000000..440e868 --- /dev/null +++ b/app/src/main/java/com/adpth/bmicalculator/ResultActivity.java @@ -0,0 +1,62 @@ +package com.adpth.bmicalculator; + +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.view.View; +import android.widget.Button; +import android.widget.RelativeLayout; +import android.widget.TextView; + +import org.w3c.dom.Text; + +public class ResultActivity extends AppCompatActivity { + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_result); + + Intent intent = getIntent(); + + float BMI = Math.round((intent.getFloatExtra("BMI", 0) * 100) / 100); + String age_value = intent.getStringExtra("age"); + + TextView your_bmi = findViewById(R.id.your_bmi); + your_bmi.setText(String.valueOf(BMI)); + + TextView age = findViewById(R.id.age); + age.setText(age_value); + + TextView category = findViewById(R.id.category); + Category category1 = new Category(); + category.setText(category1.getCategory(BMI)); + + TextView condition = findViewById(R.id.condition); + Condition condition1 = new Condition(); + condition.setText(condition1.getCategory(BMI)); + + Button recalculate = findViewById(R.id.recalculate); + recalculate.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + updateUI(); + } + }); + + } + + private void updateUI() { + Intent intent1 = new Intent(ResultActivity.this,MainActivity.class); + startActivity(intent1); + fileList(); + } + + @Override + public void onBackPressed() { + super.onBackPressed(); + updateUI(); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/adpth/bmicalculator/SplashActivity.java b/app/src/main/java/com/adpth/bmicalculator/SplashActivity.java new file mode 100644 index 0000000..9f9f7e9 --- /dev/null +++ b/app/src/main/java/com/adpth/bmicalculator/SplashActivity.java @@ -0,0 +1,25 @@ +package com.adpth.bmicalculator; + +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.os.Handler; + +public class SplashActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_splash); + + new Handler().postDelayed(new Runnable() { + @Override + public void run() { + Intent intent = new Intent(SplashActivity.this,MainActivity.class); + startActivity(intent); + finish(); + } + },3500); + } +} \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/female_white.xml b/app/src/main/res/drawable-v24/female_white.xml new file mode 100644 index 0000000..0a163e2 --- /dev/null +++ b/app/src/main/res/drawable-v24/female_white.xml @@ -0,0 +1,23 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/calculate_btn.xml b/app/src/main/res/drawable/calculate_btn.xml new file mode 100644 index 0000000..62e0d79 --- /dev/null +++ b/app/src/main/res/drawable/calculate_btn.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/female.xml b/app/src/main/res/drawable/female.xml new file mode 100644 index 0000000..297cb94 --- /dev/null +++ b/app/src/main/res/drawable/female.xml @@ -0,0 +1,23 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/female_white.xml b/app/src/main/res/drawable/female_white.xml new file mode 100644 index 0000000..0a163e2 --- /dev/null +++ b/app/src/main/res/drawable/female_white.xml @@ -0,0 +1,23 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_add.xml b/app/src/main/res/drawable/ic_add.xml new file mode 100644 index 0000000..70046c4 --- /dev/null +++ b/app/src/main/res/drawable/ic_add.xml @@ -0,0 +1,5 @@ + + + diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/logo.png b/app/src/main/res/drawable/logo.png new file mode 100644 index 0000000..83386dc Binary files /dev/null and b/app/src/main/res/drawable/logo.png differ diff --git a/app/src/main/res/drawable/male.xml b/app/src/main/res/drawable/male.xml new file mode 100644 index 0000000..ba72776 --- /dev/null +++ b/app/src/main/res/drawable/male.xml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/male_white.xml b/app/src/main/res/drawable/male_white.xml new file mode 100644 index 0000000..0501773 --- /dev/null +++ b/app/src/main/res/drawable/male_white.xml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ripple.xml b/app/src/main/res/drawable/ripple.xml new file mode 100644 index 0000000..d918e90 --- /dev/null +++ b/app/src/main/res/drawable/ripple.xml @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/stepper_background.xml b/app/src/main/res/drawable/stepper_background.xml new file mode 100644 index 0000000..46b6ce1 --- /dev/null +++ b/app/src/main/res/drawable/stepper_background.xml @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/substract.xml b/app/src/main/res/drawable/substract.xml new file mode 100644 index 0000000..ca60e2f --- /dev/null +++ b/app/src/main/res/drawable/substract.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout-v21/activity_main.xml b/app/src/main/res/layout-v21/activity_main.xml new file mode 100644 index 0000000..857b2eb --- /dev/null +++ b/app/src/main/res/layout-v21/activity_main.xml @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +