From 511cfa1dfaa4338da1a208a2cbbbebac24600c27 Mon Sep 17 00:00:00 2001 From: adpth Date: Wed, 14 Oct 2020 18:56:12 +0530 Subject: [PATCH 1/6] BMI Calculator --- .gitignore | 14 + .idea/.name | 1 + .idea/codeStyles/Project.xml | 134 ++++++++ .idea/gradle.xml | 21 ++ .idea/jarRepositories.xml | 30 ++ .idea/misc.xml | 9 + .idea/runConfigurations.xml | 12 + .idea/vcs.xml | 6 + app/.gitignore | 1 + app/build.gradle | 36 ++ app/proguard-rules.pro | 21 ++ .../ExampleInstrumentedTest.java | 26 ++ app/src/main/AndroidManifest.xml | 23 ++ .../com/adpth/bmicalculator/Category.java | 26 ++ .../com/adpth/bmicalculator/Condition.java | 27 ++ .../com/adpth/bmicalculator/MainActivity.java | 187 ++++++++++ .../adpth/bmicalculator/ResultActivity.java | 62 ++++ .../adpth/bmicalculator/SplashActivity.java | 25 ++ .../main/res/drawable-v24/female_white.xml | 23 ++ .../drawable-v24/ic_launcher_foreground.xml | 30 ++ app/src/main/res/drawable/calculate_btn.xml | 7 + app/src/main/res/drawable/female.xml | 23 ++ app/src/main/res/drawable/female_white.xml | 23 ++ app/src/main/res/drawable/ic_add.xml | 5 + .../res/drawable/ic_launcher_background.xml | 170 ++++++++++ app/src/main/res/drawable/logo.png | Bin 0 -> 6514 bytes app/src/main/res/drawable/male.xml | 17 + app/src/main/res/drawable/male_white.xml | 17 + app/src/main/res/drawable/ripple.xml | 11 + .../main/res/drawable/stepper_background.xml | 13 + app/src/main/res/drawable/substract.xml | 11 + app/src/main/res/layout-v21/activity_main.xml | 308 +++++++++++++++++ app/src/main/res/layout/activity_main.xml | 320 ++++++++++++++++++ app/src/main/res/layout/activity_result.xml | 128 +++++++ app/src/main/res/layout/activity_splash.xml | 20 ++ .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3593 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5339 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2636 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3388 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4926 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7472 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7909 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 11873 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10652 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16570 bytes app/src/main/res/values/colors.xml | 14 + app/src/main/res/values/strings.xml | 20 ++ app/src/main/res/values/styles.xml | 10 + .../adpth/bmicalculator/ExampleUnitTest.java | 17 + build.gradle | 25 ++ gradle.properties | 19 ++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 172 ++++++++++ gradlew.bat | 84 +++++ settings.gradle | 2 + 58 files changed, 2166 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.name create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/vcs.xml create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/com/adpth/bmicalculator/ExampleInstrumentedTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/com/adpth/bmicalculator/Category.java create mode 100644 app/src/main/java/com/adpth/bmicalculator/Condition.java create mode 100644 app/src/main/java/com/adpth/bmicalculator/MainActivity.java create mode 100644 app/src/main/java/com/adpth/bmicalculator/ResultActivity.java create mode 100644 app/src/main/java/com/adpth/bmicalculator/SplashActivity.java create mode 100644 app/src/main/res/drawable-v24/female_white.xml create mode 100644 app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 app/src/main/res/drawable/calculate_btn.xml create mode 100644 app/src/main/res/drawable/female.xml create mode 100644 app/src/main/res/drawable/female_white.xml create mode 100644 app/src/main/res/drawable/ic_add.xml create mode 100644 app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 app/src/main/res/drawable/logo.png create mode 100644 app/src/main/res/drawable/male.xml create mode 100644 app/src/main/res/drawable/male_white.xml create mode 100644 app/src/main/res/drawable/ripple.xml create mode 100644 app/src/main/res/drawable/stepper_background.xml create mode 100644 app/src/main/res/drawable/substract.xml create mode 100644 app/src/main/res/layout-v21/activity_main.xml create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/layout/activity_result.xml create mode 100644 app/src/main/res/layout/activity_splash.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 app/src/test/java/com/adpth/bmicalculator/ExampleUnitTest.java create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle 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 0000000000000000000000000000000000000000..83386dc95c745ea022f08c573d9f63585e71fc02 GIT binary patch literal 6514 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 Y2iFMyM|vQcw*UYD07*qoM6N<$f}?yQD*ylh literal 0 HcmV?d00001 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +