├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── values │ ├── strings.xml │ ├── styles.xml │ └── colors.xml ├── menu │ └── activity_calculator.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── layout │ ├── activity_calculator.xml │ └── calculator.xml └── drawable │ ├── custombutton.xml │ ├── custombutton3.xml │ └── custombutton2.xml ├── .settings └── org.eclipse.jdt.core.prefs ├── .gitignore ├── README.md ├── project.properties ├── proguard-project.txt ├── AndroidManifest.xml ├── src └── com │ └── cmdann │ └── cmdanncalculator │ └── Calculator.java └── LICENSE.txt /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMDann/Simple-Android-Calculator/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMDann/Simple-Android-Calculator/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMDann/Simple-Android-Calculator/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMDann/Simple-Android-Calculator/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMDann/Simple-Android-Calculator/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMDann/Simple-Android-Calculator/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CMDannCalculator 5 | Hello world! 6 | Settings 7 | 8 | -------------------------------------------------------------------------------- /res/menu/activity_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | 18 | # Eclipse project files 19 | .classpath 20 | .project 21 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Simple-Android-Calculator 2 | ========================= 3 | 4 |

This is a simple calculator that I created using eclipse. I will in the future be adding some features to this. The calculator offers simple functionality and is very simplistic.

5 | 6 | 7 | Android app on Google Play 9 | 10 | -------------------------------------------------------------------------------- /res/layout/activity_calculator.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | 14 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F9E60E 4 | #F9F89D 5 | #FF9B4A 6 | #F77D19 7 | #19FCDA 8 | #D9F7F2 9 | #ACA899 10 | #FFFFFF 11 | #DDDDDD 12 | #000000 13 | #545454 14 | #6E6E6E 15 | #303030 16 | #3B3B3B 17 | #B51414 18 | #CF0E0E 19 | -------------------------------------------------------------------------------- /res/drawable/custombutton.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 12 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 31 | 33 | 38 | 39 | 40 | 41 | 42 | 43 | 47 | 50 | 52 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /res/drawable/custombutton3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 12 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 31 | 33 | 38 | 39 | 40 | 41 | 42 | 43 | 47 | 50 | 52 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /res/drawable/custombutton2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 12 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 31 | 33 | 38 | 39 | 40 | 41 | 42 | 43 | 47 | 50 | 52 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /res/layout/calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 19 | 20 | 25 | 26 |