├── .classpath
├── .project
├── .settings
└── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── LICENSE.txt
├── README.md
├── assets
├── Roboto-BoldCondensed.ttf
├── Roboto-Condensed.ttf
├── Roboto-Light.ttf
├── Roboto-Medium.ttf
├── Roboto-Thin.ttf
└── RobotoSlab-Thin.ttf
├── bin
└── classes
│ ├── com
│ └── udojava
│ │ └── evalex
│ │ ├── Expression$1.class
│ │ ├── Expression$10.class
│ │ ├── Expression$11.class
│ │ ├── Expression$12.class
│ │ ├── Expression$13.class
│ │ ├── Expression$14.class
│ │ ├── Expression$15.class
│ │ ├── Expression$16.class
│ │ ├── Expression$17.class
│ │ ├── Expression$18.class
│ │ ├── Expression$19.class
│ │ ├── Expression$2.class
│ │ ├── Expression$20.class
│ │ ├── Expression$21.class
│ │ ├── Expression$22.class
│ │ ├── Expression$23.class
│ │ ├── Expression$24.class
│ │ ├── Expression$25.class
│ │ ├── Expression$26.class
│ │ ├── Expression$27.class
│ │ ├── Expression$3.class
│ │ ├── Expression$4.class
│ │ ├── Expression$5.class
│ │ ├── Expression$6.class
│ │ ├── Expression$7.class
│ │ ├── Expression$8.class
│ │ ├── Expression$9.class
│ │ ├── Expression$ExpressionException.class
│ │ ├── Expression$Function.class
│ │ ├── Expression$Operator.class
│ │ ├── Expression$Tokenizer.class
│ │ └── Expression.class
│ └── home
│ └── jmstudios
│ └── calc
│ ├── About.class
│ ├── BuildConfig.class
│ ├── Main$1.class
│ ├── Main$2.class
│ ├── Main$3.class
│ ├── Main$4.class
│ ├── Main$5.class
│ ├── Main$6.class
│ ├── Main$7.class
│ ├── Main$8.class
│ ├── Main$9.class
│ ├── Main.class
│ ├── Preferences.class
│ ├── R$array.class
│ ├── R$attr.class
│ ├── R$color.class
│ ├── R$dimen.class
│ ├── R$drawable.class
│ ├── R$id.class
│ ├── R$layout.class
│ ├── R$menu.class
│ ├── R$string.class
│ ├── R$style.class
│ ├── R$xml.class
│ └── R.class
├── gen
└── home
│ └── jmstudios
│ └── calc
│ ├── BuildConfig.java
│ └── R.java
├── libs
└── android-support-v4.jar
├── proguard.cfg
├── project.properties
├── res
├── color
│ ├── adv_button_bg.xml
│ ├── adv_button_bg_blue.xml
│ ├── adv_button_bg_orange.xml
│ ├── adv_button_bg_purple.xml
│ ├── adv_button_bg_red.xml
│ ├── adv_button_text.xml
│ ├── adv_button_text_blue.xml
│ ├── adv_button_text_orange.xml
│ ├── adv_button_text_purple.xml
│ ├── adv_button_text_red.xml
│ ├── equal_button_text.xml
│ ├── handle.xml
│ ├── handle_blue.xml
│ ├── handle_orange.xml
│ ├── handle_purple.xml
│ ├── handle_red.xml
│ ├── link_bg.xml
│ ├── normal_button_bg.xml
│ ├── normal_button_text.xml
│ ├── normal_button_text_blue.xml
│ ├── normal_button_text_orange.xml
│ ├── normal_button_text_purple.xml
│ ├── normal_button_text_red.xml
│ └── reset_button_bg.xml
├── drawable-hdpi
│ ├── balkpressedpurple.png
│ ├── ic_launcher.png
│ ├── logo_blue.png
│ ├── logo_default.png
│ ├── logo_orange.png
│ ├── logo_purple.png
│ ├── logo_red.png
│ └── textfield_darkblue.9.png
├── drawable-ldpi
│ ├── ic_launcher.png
│ ├── logo_blue.png
│ ├── logo_default.png
│ ├── logo_orange.png
│ ├── logo_purple.png
│ └── logo_red.png
├── drawable-mdpi
│ ├── ic_launcher.png
│ ├── logo_blue.png
│ ├── logo_default.png
│ ├── logo_orange.png
│ ├── logo_purple.png
│ ├── logo_red.png
│ └── textfield_darkblue.9.png
├── drawable-xhdpi
│ ├── ic_launcher.png
│ ├── logo_blue.png
│ ├── logo_default.png
│ ├── logo_orange.png
│ ├── logo_purple.png
│ ├── logo_red.png
│ └── textfield_darkblue.9.png
├── drawable-xxhdpi
│ ├── ic_launcher.png
│ ├── logo_blue.png
│ ├── logo_default.png
│ ├── logo_orange.png
│ ├── logo_purple.png
│ └── logo_red.png
├── drawable-xxxhdpi
│ └── ic_launcher.png
├── drawable
│ ├── balk.png
│ ├── balkpressed.png
│ ├── balkpressedblue.png
│ ├── balkpressedorange.png
│ ├── balkpressedpurple.png
│ ├── balkpressedred.png
│ ├── logo_big.png
│ └── normal_button_bg_norm.xml
├── layout-land
│ ├── main.xml
│ ├── mainblue.xml
│ ├── mainorange.xml
│ ├── mainpurple.xml
│ └── mainred.xml
├── layout
│ ├── activity_about.xml
│ ├── main.xml
│ ├── mainblue.xml
│ ├── mainorange.xml
│ ├── mainpurple.xml
│ └── mainred.xml
├── menu
│ ├── activity_about.xml
│ └── menu.xml
├── values-fr
│ └── strings.xml
├── values-land
│ └── dimens.xml
├── values-sw600dp-land
│ └── dimens.xml
├── values-sw600dp
│ └── dimens.xml
├── values
│ ├── array.xml
│ ├── colors.xml
│ ├── dimens.xml
│ ├── strings.xml
│ └── styles.xml
└── xml
│ └── preferences.xml
└── src
├── com
└── udojava
│ └── evalex
│ └── Expression.java
└── home
└── jmstudios
└── calc
├── About.java
├── Main.java
└── Preferences.java
/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | CleanCalculator
4 |
5 |
6 |
7 |
8 |
9 | com.android.ide.eclipse.adt.ResourceManagerBuilder
10 |
11 |
12 |
13 |
14 | com.android.ide.eclipse.adt.PreCompilerBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.android.ide.eclipse.adt.ApkBuilder
25 |
26 |
27 |
28 |
29 |
30 | com.android.ide.eclipse.adt.AndroidNature
31 | org.eclipse.jdt.core.javanature
32 |
33 |
34 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5 | org.eclipse.jdt.core.compiler.compliance=1.6
6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate
8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11 | org.eclipse.jdt.core.compiler.source=1.6
12 |
--------------------------------------------------------------------------------
/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
16 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
29 |
32 |
33 |
36 |
37 |
41 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (C) 2013 Licence
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a
4 | copy of this software and associated documentation files (the
5 | "Software"), to deal in the Software without restriction, including
6 | without limitation the rights to use, copy, modify, merge, publish,
7 | distribute, sublicense, and/or sell copies of the Software, and to
8 | permit persons to whom the Software is furnished to do so, subject to
9 | the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be included
12 | in all copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Clean Calculator
2 | ================
3 |
4 | A calculator for android with a clean holo interface.
5 |
6 | Download on Google Play: https://play.google.com/store/apps/details?id=home.jmstudios.calc
7 |
8 | Clean Calculator is no longer under active development.
9 |
--------------------------------------------------------------------------------
/assets/Roboto-BoldCondensed.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/assets/Roboto-BoldCondensed.ttf
--------------------------------------------------------------------------------
/assets/Roboto-Condensed.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/assets/Roboto-Condensed.ttf
--------------------------------------------------------------------------------
/assets/Roboto-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/assets/Roboto-Light.ttf
--------------------------------------------------------------------------------
/assets/Roboto-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/assets/Roboto-Medium.ttf
--------------------------------------------------------------------------------
/assets/Roboto-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/assets/Roboto-Thin.ttf
--------------------------------------------------------------------------------
/assets/RobotoSlab-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/assets/RobotoSlab-Thin.ttf
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$1.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$10.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$10.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$11.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$11.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$12.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$12.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$13.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$13.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$14.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$14.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$15.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$15.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$16.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$16.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$17.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$17.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$18.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$18.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$19.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$19.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$2.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$20.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$20.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$21.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$21.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$22.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$22.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$23.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$23.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$24.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$24.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$25.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$25.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$26.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$26.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$27.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$27.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$3.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$4.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$5.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$5.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$6.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$6.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$7.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$7.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$8.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$8.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$9.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$ExpressionException.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$ExpressionException.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$Function.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$Function.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$Operator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$Operator.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression$Tokenizer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression$Tokenizer.class
--------------------------------------------------------------------------------
/bin/classes/com/udojava/evalex/Expression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/com/udojava/evalex/Expression.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/About.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/About.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/BuildConfig.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$1.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$2.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$3.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$4.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$5.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$5.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$6.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$6.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$7.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$7.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$8.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$8.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main$9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main$9.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Main.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/Preferences.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/Preferences.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$array.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$array.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$attr.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$color.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$dimen.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$drawable.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$id.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$layout.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$menu.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$menu.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$string.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$style.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R$xml.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R$xml.class
--------------------------------------------------------------------------------
/bin/classes/home/jmstudios/calc/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/bin/classes/home/jmstudios/calc/R.class
--------------------------------------------------------------------------------
/gen/home/jmstudios/calc/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package home.jmstudios.calc;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/gen/home/jmstudios/calc/R.java:
--------------------------------------------------------------------------------
1 | /* AUTO-GENERATED FILE. DO NOT MODIFY.
2 | *
3 | * This class was automatically generated by the
4 | * aapt tool from the resource data it found. It
5 | * should not be modified by hand.
6 | */
7 |
8 | package home.jmstudios.calc;
9 |
10 | public final class R {
11 | public static final class array {
12 | public static final int angleOptions=0x7f050002;
13 | public static final int angleValues=0x7f050003;
14 | public static final int themeOptions=0x7f050000;
15 | public static final int themeValues=0x7f050001;
16 | }
17 | public static final class attr {
18 | }
19 | public static final class color {
20 | public static final int adv_button_bg=0x7f060019;
21 | public static final int adv_button_bg_blue=0x7f06001a;
22 | public static final int adv_button_bg_orange=0x7f06001b;
23 | public static final int adv_button_bg_purple=0x7f06001c;
24 | public static final int adv_button_bg_red=0x7f06001d;
25 | public static final int adv_button_normal=0x7f06000e;
26 | public static final int adv_button_pressed=0x7f06000f;
27 | public static final int adv_button_text=0x7f06001e;
28 | public static final int adv_button_text_blue=0x7f06001f;
29 | public static final int adv_button_text_orange=0x7f060020;
30 | public static final int adv_button_text_purple=0x7f060021;
31 | public static final int adv_button_text_red=0x7f060022;
32 | public static final int equal_button_bg_norm=0x7f060012;
33 | public static final int equal_button_text=0x7f060023;
34 | public static final int handle=0x7f060024;
35 | public static final int handle_blue=0x7f060025;
36 | public static final int handle_orange=0x7f060026;
37 | public static final int handle_purple=0x7f060027;
38 | public static final int handle_red=0x7f060028;
39 | public static final int ics_blue=0x7f060013;
40 | public static final int link_bg=0x7f060029;
41 | public static final int link_bg_pressed=0x7f060018;
42 | public static final int navigationbar=0x7f060009;
43 | public static final int navigationbarblue=0x7f06000a;
44 | public static final int navigationbarorange=0x7f06000b;
45 | public static final int navigationbarpurple=0x7f06000c;
46 | public static final int navigationbarred=0x7f06000d;
47 | public static final int normal_button_bg=0x7f06002a;
48 | public static final int normal_button_normal=0x7f060000;
49 | public static final int normal_button_pressed=0x7f060001;
50 | public static final int normal_button_text=0x7f06002b;
51 | public static final int normal_button_text_blue=0x7f06002c;
52 | public static final int normal_button_text_orange=0x7f06002d;
53 | public static final int normal_button_text_purple=0x7f06002e;
54 | public static final int normal_button_text_red=0x7f06002f;
55 | public static final int orange=0x7f060014;
56 | public static final int purple=0x7f060015;
57 | public static final int red=0x7f060016;
58 | public static final int red_dark=0x7f060017;
59 | public static final int reset_button_bg=0x7f060030;
60 | public static final int reset_button_normal=0x7f060010;
61 | public static final int statusbar=0x7f060004;
62 | public static final int statusbarblue=0x7f060005;
63 | public static final int statusbarorange=0x7f060006;
64 | public static final int statusbarpurple=0x7f060007;
65 | public static final int statusbarred=0x7f060008;
66 | public static final int transparent=0x7f060011;
67 | public static final int window_bg=0x7f060002;
68 | public static final int window_bg_dark=0x7f060003;
69 | }
70 | public static final class dimen {
71 | public static final int adv_button_padding=0x7f070002;
72 | public static final int adv_button_text=0x7f070001;
73 | public static final int norm_button_text=0x7f070000;
74 | public static final int panel_height=0x7f070003;
75 | }
76 | public static final class drawable {
77 | public static final int balk=0x7f020000;
78 | public static final int balkpressed=0x7f020001;
79 | public static final int balkpressedblue=0x7f020002;
80 | public static final int balkpressedorange=0x7f020003;
81 | public static final int balkpressedpurple=0x7f020004;
82 | public static final int balkpressedred=0x7f020005;
83 | public static final int ic_launcher=0x7f020006;
84 | public static final int logo_big=0x7f020007;
85 | public static final int logo_blue=0x7f020008;
86 | public static final int logo_default=0x7f020009;
87 | public static final int logo_orange=0x7f02000a;
88 | public static final int logo_purple=0x7f02000b;
89 | public static final int logo_red=0x7f02000c;
90 | public static final int normal_button_bg_norm=0x7f02000d;
91 | public static final int textfield_darkblue=0x7f02000e;
92 | }
93 | public static final class id {
94 | public static final int TextView01=0x7f0b0002;
95 | public static final int TextView02=0x7f0b0008;
96 | public static final int button0=0x7f0b001c;
97 | public static final int button1=0x7f0b0016;
98 | public static final int button2=0x7f0b0017;
99 | public static final int button3=0x7f0b0018;
100 | public static final int button4=0x7f0b0012;
101 | public static final int button5=0x7f0b0013;
102 | public static final int button6=0x7f0b0014;
103 | public static final int button7=0x7f0b000e;
104 | public static final int button8=0x7f0b000f;
105 | public static final int button9=0x7f0b0010;
106 | public static final int buttonDivide=0x7f0b001e;
107 | public static final int buttonEqual=0x7f0b001d;
108 | public static final int buttonMinus=0x7f0b0015;
109 | public static final int buttonMultiply=0x7f0b0019;
110 | public static final int buttonPlus=0x7f0b0011;
111 | public static final int buttonPoint=0x7f0b001b;
112 | public static final int buttonReset=0x7f0b000d;
113 | public static final int button_acos=0x7f0b0029;
114 | public static final int button_asin=0x7f0b0028;
115 | public static final int button_atan=0x7f0b002a;
116 | public static final int button_closepar=0x7f0b0023;
117 | public static final int button_cos=0x7f0b0026;
118 | public static final int button_del=0x7f0b000c;
119 | public static final int button_exp=0x7f0b002b;
120 | public static final int button_mod=0x7f0b0024;
121 | public static final int button_openpar=0x7f0b0022;
122 | public static final int button_pi=0x7f0b002d;
123 | public static final int button_root=0x7f0b002c;
124 | public static final int button_sin=0x7f0b0025;
125 | public static final int button_tan=0x7f0b0027;
126 | public static final int content=0x7f0b0020;
127 | public static final int editText1=0x7f0b000b;
128 | public static final int handle=0x7f0b0021;
129 | public static final int imageView1=0x7f0b0001;
130 | public static final int linearLayout1=0x7f0b000a;
131 | public static final int linearLayout3=0x7f0b001a;
132 | public static final int menu_about=0x7f0b002e;
133 | public static final int menu_settings=0x7f0b002f;
134 | public static final int scrollView1=0x7f0b0000;
135 | public static final int slidingDrawer1=0x7f0b001f;
136 | public static final int textView1=0x7f0b0003;
137 | public static final int textView2=0x7f0b0004;
138 | public static final int textView3=0x7f0b0005;
139 | public static final int textView4=0x7f0b0007;
140 | public static final int textView6=0x7f0b0006;
141 | public static final int textView8=0x7f0b0009;
142 | }
143 | public static final class layout {
144 | public static final int activity_about=0x7f030000;
145 | public static final int main=0x7f030001;
146 | public static final int mainblue=0x7f030002;
147 | public static final int mainorange=0x7f030003;
148 | public static final int mainpurple=0x7f030004;
149 | public static final int mainred=0x7f030005;
150 | }
151 | public static final class menu {
152 | public static final int activity_about=0x7f0a0000;
153 | public static final int menu=0x7f0a0001;
154 | }
155 | public static final class string {
156 | public static final int angle_summary=0x7f080015;
157 | public static final int angle_title=0x7f080016;
158 | public static final int app_name=0x7f080000;
159 | public static final int bar_category_summary=0x7f08000d;
160 | public static final int bar_category_title=0x7f08000e;
161 | public static final int clean=0x7f080018;
162 | public static final int colored_navigationbar_summary=0x7f080012;
163 | public static final int colored_navigationbar_title=0x7f080011;
164 | public static final int colored_notificationbar_summary=0x7f080010;
165 | public static final int colored_notificationbar_title=0x7f08000f;
166 | public static final int delete_numbers=0x7f080002;
167 | public static final int exp=0x7f080004;
168 | public static final int function_category_summary=0x7f08000b;
169 | public static final int function_category_title=0x7f08000c;
170 | public static final int mail=0x7f08001c;
171 | public static final int menu_about=0x7f080005;
172 | public static final int menu_settings=0x7f080006;
173 | public static final int or=0x7f080019;
174 | public static final int pi=0x7f080003;
175 | public static final int playstore=0x7f08001a;
176 | public static final int playstoredon=0x7f08001b;
177 | public static final int precision_summary=0x7f080013;
178 | public static final int precision_title=0x7f080014;
179 | public static final int square_root_symbol=0x7f080001;
180 | public static final int theme_category_summary=0x7f080008;
181 | public static final int theme_summary=0x7f080009;
182 | public static final int theme_title=0x7f08000a;
183 | public static final int title_activity_about=0x7f080017;
184 | public static final int title_activity_settings=0x7f080007;
185 | }
186 | public static final class style {
187 | public static final int ActionBar=0x7f090006;
188 | public static final int ActionBarBlue=0x7f09000b;
189 | public static final int ActionBarOrange=0x7f09000f;
190 | public static final int ActionBarPurple=0x7f090013;
191 | public static final int ActionBarRed=0x7f090017;
192 | public static final int AdvBut=0x7f090004;
193 | public static final int AdvButBlue=0x7f09000a;
194 | public static final int AdvButOrange=0x7f09000e;
195 | public static final int AdvButPurple=0x7f090012;
196 | public static final int AdvButRed=0x7f090016;
197 | public static final int AppTheme=0x7f090000;
198 | /** Second theme
199 | */
200 | public static final int AppThemeBlue=0x7f090008;
201 | /** Third theme
202 | */
203 | public static final int AppThemeOrange=0x7f09000c;
204 | /** 4th theme
205 | */
206 | public static final int AppThemePurple=0x7f090010;
207 | /** 5th theme
208 | */
209 | public static final int AppThemeRed=0x7f090014;
210 | public static final int ButtonBlue=0x7f090009;
211 | public static final int ButtonOrange=0x7f09000d;
212 | public static final int ButtonPurple=0x7f090011;
213 | public static final int ButtonRed=0x7f090015;
214 | public static final int NormButLand=0x7f090005;
215 | public static final int ResultTheme=0x7f090002;
216 | public static final int Theme_AppTheme_Widget_Button=0x7f090001;
217 | public static final int TitleText=0x7f090007;
218 | public static final int norm_buttons=0x7f090003;
219 | }
220 | public static final class xml {
221 | public static final int preferences=0x7f040000;
222 | }
223 | }
224 |
--------------------------------------------------------------------------------
/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/proguard.cfg:
--------------------------------------------------------------------------------
1 | -optimizationpasses 5
2 | -dontusemixedcaseclassnames
3 | -dontskipnonpubliclibraryclasses
4 | -dontpreverify
5 | -verbose
6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
7 |
8 | -keep public class * extends android.app.Activity
9 | -keep public class * extends android.app.Application
10 | -keep public class * extends android.app.Service
11 | -keep public class * extends android.content.BroadcastReceiver
12 | -keep public class * extends android.content.ContentProvider
13 | -keep public class * extends android.app.backup.BackupAgentHelper
14 | -keep public class * extends android.preference.Preference
15 | -keep public class com.android.vending.licensing.ILicensingService
16 |
17 | -keepclasseswithmembernames class * {
18 | native ;
19 | }
20 |
21 | -keepclasseswithmembers class * {
22 | public (android.content.Context, android.util.AttributeSet);
23 | }
24 |
25 | -keepclasseswithmembers class * {
26 | public (android.content.Context, android.util.AttributeSet, int);
27 | }
28 |
29 | -keepclassmembers class * extends android.app.Activity {
30 | public void *(android.view.View);
31 | }
32 |
33 | -keepclassmembers enum * {
34 | public static **[] values();
35 | public static ** valueOf(java.lang.String);
36 | }
37 |
38 | -keep class * implements android.os.Parcelable {
39 | public static final android.os.Parcelable$Creator *;
40 | }
41 |
--------------------------------------------------------------------------------
/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 use,
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 |
10 | # Project target.
11 | target=Google Inc.:Google APIs:22
12 | android.library.reference.1=../../programmeren/android/gridlayout_v7
13 |
--------------------------------------------------------------------------------
/res/color/adv_button_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_bg_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_bg_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_bg_purple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_bg_red.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_text.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_text_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_text_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_text_purple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/adv_button_text_red.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/equal_button_text.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/handle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/handle_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/handle_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/handle_purple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/handle_red.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/link_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/normal_button_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/normal_button_text.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/normal_button_text_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/normal_button_text_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/normal_button_text_purple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/normal_button_text_red.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/color/reset_button_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/drawable-hdpi/balkpressedpurple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/balkpressedpurple.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/logo_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/logo_blue.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/logo_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/logo_default.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/logo_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/logo_orange.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/logo_purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/logo_purple.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/logo_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/logo_red.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/textfield_darkblue.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-hdpi/textfield_darkblue.9.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/logo_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-ldpi/logo_blue.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/logo_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-ldpi/logo_default.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/logo_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-ldpi/logo_orange.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/logo_purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-ldpi/logo_purple.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/logo_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-ldpi/logo_red.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/logo_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/logo_blue.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/logo_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/logo_default.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/logo_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/logo_orange.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/logo_purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/logo_purple.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/logo_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/logo_red.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/textfield_darkblue.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-mdpi/textfield_darkblue.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/logo_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/logo_blue.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/logo_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/logo_default.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/logo_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/logo_orange.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/logo_purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/logo_purple.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/logo_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/logo_red.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/textfield_darkblue.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xhdpi/textfield_darkblue.9.png
--------------------------------------------------------------------------------
/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-xxhdpi/logo_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxhdpi/logo_blue.png
--------------------------------------------------------------------------------
/res/drawable-xxhdpi/logo_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxhdpi/logo_default.png
--------------------------------------------------------------------------------
/res/drawable-xxhdpi/logo_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxhdpi/logo_orange.png
--------------------------------------------------------------------------------
/res/drawable-xxhdpi/logo_purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxhdpi/logo_purple.png
--------------------------------------------------------------------------------
/res/drawable-xxhdpi/logo_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxhdpi/logo_red.png
--------------------------------------------------------------------------------
/res/drawable-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable/balk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/balk.png
--------------------------------------------------------------------------------
/res/drawable/balkpressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/balkpressed.png
--------------------------------------------------------------------------------
/res/drawable/balkpressedblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/balkpressedblue.png
--------------------------------------------------------------------------------
/res/drawable/balkpressedorange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/balkpressedorange.png
--------------------------------------------------------------------------------
/res/drawable/balkpressedpurple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/balkpressedpurple.png
--------------------------------------------------------------------------------
/res/drawable/balkpressedred.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/balkpressedred.png
--------------------------------------------------------------------------------
/res/drawable/logo_big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchmrt/clean-calculator/790c40bfb43affcd3ff5b482c1b29a5a6ebb4c14/res/drawable/logo_big.png
--------------------------------------------------------------------------------
/res/drawable/normal_button_bg_norm.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/res/layout-land/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
22 |
43 |
44 |
45 |
46 |
47 |
52 |
53 |
64 |
65 |
78 |
79 |
80 |
81 |
82 |
88 |
89 |
95 |
96 |
101 |
102 |
112 |
113 |
123 |
124 |
134 |
135 |
136 |
144 |
145 |
155 |
156 |
166 |
167 |
177 |
178 |
179 |
186 |
187 |
197 |
198 |
208 |
209 |
219 |
220 |
221 |
228 |
229 |
239 |
240 |
250 |
251 |
261 |
262 |
263 |
264 |
270 |
271 |
276 |
277 |
283 |
284 |
291 |
292 |
299 |
300 |
307 |
308 |
315 |
316 |
323 |
324 |
325 |
332 |
333 |
340 |
341 |
348 |
349 |
356 |
357 |
364 |
365 |
366 |
373 |
374 |
381 |
382 |
389 |
390 |
397 |
398 |
405 |
406 |
407 |
414 |
415 |
422 |
423 |
430 |
431 |
439 |
440 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
--------------------------------------------------------------------------------
/res/layout-land/mainblue.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
22 |
43 |
44 |
45 |
46 |
47 |
52 |
53 |
64 |
65 |
78 |
79 |
80 |
81 |
82 |
88 |
89 |
95 |
96 |
101 |
102 |
112 |
113 |
123 |
124 |
134 |
135 |
136 |
144 |
145 |
155 |
156 |
166 |
167 |
177 |
178 |
179 |
186 |
187 |
197 |
198 |
208 |
209 |
219 |
220 |
221 |
228 |
229 |
239 |
240 |
250 |
251 |
261 |
262 |
263 |
264 |
270 |
271 |
276 |
277 |
283 |
284 |
291 |
292 |
299 |
300 |
307 |
308 |
315 |
316 |
323 |
324 |
325 |
332 |
333 |
340 |
341 |
348 |
349 |
356 |
357 |
364 |
365 |
366 |
373 |
374 |
381 |
382 |
389 |
390 |
397 |
398 |
405 |
406 |
407 |
414 |
415 |
422 |
423 |
430 |
431 |
439 |
440 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
--------------------------------------------------------------------------------
/res/layout-land/mainorange.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
22 |
43 |
44 |
45 |
46 |
47 |
52 |
53 |
64 |
65 |
78 |
79 |
80 |
81 |
82 |
88 |
89 |
95 |
96 |
101 |
102 |
112 |
113 |
123 |
124 |
134 |
135 |
136 |
144 |
145 |
155 |
156 |
166 |
167 |
177 |
178 |
179 |
186 |
187 |
197 |
198 |
208 |
209 |
219 |
220 |
221 |
228 |
229 |
239 |
240 |
250 |
251 |
261 |
262 |
263 |
264 |
270 |
271 |
276 |
277 |
283 |
284 |
291 |
292 |
299 |
300 |
307 |
308 |
315 |
316 |
323 |
324 |
325 |
332 |
333 |
340 |
341 |
348 |
349 |
356 |
357 |
364 |
365 |
366 |
373 |
374 |
381 |
382 |
389 |
390 |
397 |
398 |
405 |
406 |
407 |
414 |
415 |
422 |
423 |
430 |
431 |
439 |
440 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
--------------------------------------------------------------------------------
/res/layout-land/mainpurple.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
22 |
43 |
44 |
45 |
46 |
47 |
52 |
53 |
64 |
65 |
78 |
79 |
80 |
81 |
82 |
88 |
89 |
95 |
96 |
101 |
102 |
112 |
113 |
123 |
124 |
134 |
135 |
136 |
144 |
145 |
155 |
156 |
166 |
167 |
177 |
178 |
179 |
186 |
187 |
197 |
198 |
208 |
209 |
219 |
220 |
221 |
228 |
229 |
239 |
240 |
250 |
251 |
261 |
262 |
263 |
264 |
270 |
271 |
276 |
277 |
283 |
284 |
291 |
292 |
299 |
300 |
307 |
308 |
315 |
316 |
323 |
324 |
325 |
332 |
333 |
340 |
341 |
348 |
349 |
356 |
357 |
364 |
365 |
366 |
373 |
374 |
381 |
382 |
389 |
390 |
397 |
398 |
405 |
406 |
407 |
414 |
415 |
422 |
423 |
430 |
431 |
439 |
440 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
--------------------------------------------------------------------------------
/res/layout-land/mainred.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
22 |
43 |
44 |
45 |
46 |
47 |
52 |
53 |
64 |
65 |
78 |
79 |
80 |
81 |
82 |
88 |
89 |
95 |
96 |
101 |
102 |
112 |
113 |
123 |
124 |
134 |
135 |
136 |
144 |
145 |
155 |
156 |
166 |
167 |
177 |
178 |
179 |
186 |
187 |
197 |
198 |
208 |
209 |
219 |
220 |
221 |
228 |
229 |
239 |
240 |
250 |
251 |
261 |
262 |
263 |
264 |
270 |
271 |
276 |
277 |
283 |
284 |
291 |
292 |
299 |
300 |
307 |
308 |
315 |
316 |
323 |
324 |
325 |
332 |
333 |
340 |
341 |
348 |
349 |
356 |
357 |
364 |
365 |
366 |
373 |
374 |
381 |
382 |
389 |
390 |
397 |
398 |
405 |
406 |
407 |
414 |
415 |
422 |
423 |
430 |
431 |
439 |
440 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
--------------------------------------------------------------------------------
/res/layout/activity_about.xml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
15 |
16 |
20 |
21 |
22 |
23 |
30 |
31 |
35 |
36 |
45 |
46 |
54 |
55 |
56 |
57 |
62 |
63 |
71 |
72 |
79 |
80 |
81 |
82 |
95 |
96 |
107 |
108 |
121 |
122 |
133 |
134 |
147 |
148 |
149 |
150 |
151 |
152 |
--------------------------------------------------------------------------------
/res/layout/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
16 |
17 |
23 |
24 |
28 |
29 |
33 |
34 |
55 |
56 |
57 |
58 |
59 |
64 |
65 |
76 |
77 |
90 |
91 |
92 |
93 |
94 |
99 |
100 |
106 |
107 |
114 |
115 |
122 |
123 |
130 |
131 |
138 |
139 |
146 |
147 |
148 |
149 |
156 |
157 |
164 |
165 |
172 |
173 |
180 |
181 |
188 |
189 |
190 |
197 |
198 |
205 |
206 |
213 |
214 |
221 |
222 |
229 |
230 |
231 |
238 |
239 |
246 |
247 |
254 |
255 |
263 |
264 |
271 |
272 |
273 |
274 |
275 |
276 |
285 |
286 |
294 |
295 |
296 |
300 |
301 |
307 |
308 |
313 |
314 |
323 |
324 |
333 |
334 |
344 |
345 |
346 |
354 |
355 |
365 |
366 |
376 |
377 |
387 |
388 |
389 |
396 |
397 |
407 |
408 |
417 |
418 |
427 |
428 |
429 |
436 |
437 |
446 |
447 |
456 |
457 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
--------------------------------------------------------------------------------
/res/menu/activity_about.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/res/menu/menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/res/values-fr/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | "Calculatrice"
5 |
6 | "À propos"
7 | "Paramètres"
8 |
9 | "Paramètres"
10 |
11 | "À propos"
12 | "Clean"
13 | "OU"
14 | "Notez cette application ! Cela nous encouragerais beaucoup pour continuer à la mettre à jour."
15 | "S\'il vous plait, téléchargez la version payante sur le play store si vous pouvez investir en nous."
16 | "Envoyez nous vos avis ou suggestion par email."
17 |
18 |
--------------------------------------------------------------------------------
/res/values-land/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 28sp
4 | 16sp
5 | 0dp
6 |
7 |
--------------------------------------------------------------------------------
/res/values-sw600dp-land/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 48sp
4 | 24sp
5 | 0dp
6 |
7 |
--------------------------------------------------------------------------------
/res/values-sw600dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 64sp
4 | 32sp
5 | 0dp
6 | 400dp
7 |
8 |
--------------------------------------------------------------------------------
/res/values/array.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | - Light theme with turquoise (default)
5 | - Light theme with ics-blue
6 | - Light theme with orange
7 | - Light theme with purple
8 | - Light theme with red
9 |
10 |
11 |
12 | - a
13 | - b
14 | - c
15 | - d
16 | - e
17 |
18 |
19 |
20 |
21 | - Degrees
22 | - Radians
23 |
24 |
25 |
26 | - a
27 | - b
28 |
29 |
30 |
--------------------------------------------------------------------------------
/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | #F2f2ec
5 | #ECECEC
6 |
7 | #FFF2F2EC
8 | #FF2F2F2F
9 |
10 | #FF067355
11 | #FF217594
12 | #FFC38F27
13 | #FF76478E
14 | #FFBA3232
15 |
16 | #FF078B67
17 | #FF33b5e5
18 | #FFFFBB33
19 | #FFAA66CC
20 | #FFff4444
21 |
22 | #10B286
23 | #F2F2EC
24 |
25 | #35444f
26 |
27 | #00000000
28 |
29 | #10B286
30 |
31 | #33b5e5
32 | #FFBB33
33 | #AA66CC
34 | #ff4444
35 | #CC0000
36 |
37 | #aaEBF3FC
38 |
39 |
--------------------------------------------------------------------------------
/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 40sp
4 | 20sp
5 | 0dp
6 | 200dp
7 |
8 |
--------------------------------------------------------------------------------
/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | "Calculator"
5 |
6 | "√¯¯"
7 | "\u21D0"
8 | "\u03C0"
9 | "^"
10 |
11 | "About"
12 | "Settings"
13 |
14 | "Settings"
15 | "Change the looks of the calculator"
16 | "Choose a theme"
17 | "Theme"
18 | "Change the functionality of the calculator"
19 | "Function"
20 | "Choose whether you want colored navigation and/or notification bars"
21 | "Colored bars"
22 | "Colored notification bar"
23 | "Check this box for a colored notification bar. This will only work for android 4.4 and higher"
24 | "Colored navigation bar"
25 | "Check this box for a colored navigation bar. This will only work for android 5.0 and higher"
26 | "Choose the length of the result to be displayed (WARNING: if you set this to a number above 500, performance might suffer!)"
27 | "Precision"
28 | "Choose whether to calculate with degrees or radians"
29 | "Degrees/radians"
30 |
31 | "About"
32 | "Clean"
33 | "OR"
34 | "Rate this app! It helps us a lot to keep the updates coming."
35 | "Please download the donation version of this app in the playstore if you can spare a buck."
36 | "Mail us your feedback or suggestions."
37 |
38 |
--------------------------------------------------------------------------------
/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
12 |
13 |
19 |
20 |
26 |
27 |
28 |
29 |
36 |
37 |
40 |
41 |
47 |
48 |
53 |
54 |
55 |
56 |
63 |
64 |
70 |
71 |
78 |
79 |
85 |
86 |
87 |
88 |
89 |
96 |
97 |
103 |
104 |
111 |
112 |
118 |
119 |
120 |
121 |
128 |
129 |
135 |
136 |
143 |
144 |
150 |
151 |
152 |
153 |
160 |
161 |
167 |
168 |
175 |
176 |
182 |
183 |
184 |
--------------------------------------------------------------------------------
/res/xml/preferences.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
18 |
19 |
20 |
21 |
24 |
25 |
31 |
32 |
39 |
40 |
41 |
42 |
43 |
46 |
47 |
52 |
53 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/src/home/jmstudios/calc/About.java:
--------------------------------------------------------------------------------
1 | package home.jmstudios.calc;
2 |
3 | import android.net.Uri;
4 | import android.os.Build;
5 | import android.os.Bundle;
6 | import android.app.Activity;
7 | import android.content.Intent;
8 | import android.view.Menu;
9 | import android.view.MenuItem;
10 | import android.view.View;
11 | import android.support.v4.app.NavUtils;
12 |
13 | public class About extends Activity {
14 |
15 | @Override
16 | protected void onCreate(Bundle savedInstanceState) {
17 | super.onCreate(savedInstanceState);
18 | setContentView(R.layout.activity_about);
19 | // Show the Up button in the action bar.
20 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
21 | getActionBar().setDisplayHomeAsUpEnabled(true);
22 | }
23 | }
24 |
25 | @Override
26 | public boolean onCreateOptionsMenu(Menu menu) {
27 | // Inflate the menu; this adds items to the action bar if it is present.
28 | getMenuInflater().inflate(R.menu.activity_about, menu);
29 | return true;
30 | }
31 |
32 | public void openPlayStore(View v) {
33 |
34 | Uri uri = Uri.parse("market://details?id=home.jmstudios.calc");
35 | Intent intent = new Intent(Intent.ACTION_VIEW, uri);
36 | startActivity(intent);
37 | }
38 |
39 |
40 | public void openPlayStoreDon(View v) {
41 |
42 | Uri uri = Uri.parse("market://details?id=home.jmstudios.calc.donation");
43 | Intent intent = new Intent(Intent.ACTION_VIEW, uri);
44 | startActivity(intent);
45 | }
46 |
47 |
48 | public void mailFeedback(View v) {
49 | Intent intentmail = new Intent (Intent.ACTION_VIEW , Uri.parse("mailto:" + "jmproductions.studio@gmail.com"));
50 | intentmail.putExtra(Intent.EXTRA_SUBJECT, "Clean Calculator");
51 | startActivity(intentmail);
52 | }
53 |
54 | @Override
55 | public boolean onOptionsItemSelected(MenuItem item) {
56 | switch (item.getItemId()) {
57 | case android.R.id.home:
58 | // This ID represents the Home or Up button. In the case of this
59 | // activity, the Up button is shown. Use NavUtils to allow users
60 | // to navigate up one level in the application structure. For
61 | // more details, see the Navigation pattern on Android Design:
62 | //
63 | // http://developer.android.com/design/patterns/navigation.html#up-vs-back
64 | //
65 | NavUtils.navigateUpFromSameTask(this);
66 | return true;
67 | }
68 | return super.onOptionsItemSelected(item);
69 | }
70 |
71 | }
72 |
--------------------------------------------------------------------------------
/src/home/jmstudios/calc/Preferences.java:
--------------------------------------------------------------------------------
1 | package home.jmstudios.calc;
2 |
3 |
4 | import android.annotation.TargetApi;
5 | import android.app.ActionBar;
6 | import android.content.SharedPreferences;
7 | import android.os.Build;
8 | import android.os.Bundle;
9 | import android.preference.PreferenceActivity;
10 | import android.preference.PreferenceManager;
11 | import android.view.MenuItem;
12 | import android.support.v4.app.NavUtils;
13 |
14 |
15 |
16 | public class Preferences extends PreferenceActivity {
17 |
18 | private static final boolean ALWAYS_SIMPLE_PREFS = false;
19 |
20 | @Override
21 | protected void onCreate(Bundle savedInstanceState) {
22 | super.onCreate(savedInstanceState);
23 | setupActionBar();
24 |
25 | }
26 |
27 |
28 | @TargetApi(Build.VERSION_CODES.HONEYCOMB)
29 | private void setupActionBar() {
30 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
31 | // Show the Up button in the action bar.
32 | ActionBar actionbar = getActionBar();
33 | actionbar.setDisplayHomeAsUpEnabled(true);
34 | }
35 | }
36 |
37 | @Override
38 | public boolean onOptionsItemSelected(MenuItem item) {
39 | switch (item.getItemId()) {
40 | case android.R.id.home:
41 | // This ID represents the Home or Up button. In the case of this
42 | // activity, the Up button is shown. Use NavUtils to allow users
43 | // to navigate up one level in the application structure. For
44 | // more details, see the Navigation pattern on Android Design:
45 | //
46 | // http://developer.android.com/design/patterns/navigation.html#up-vs-back
47 | //
48 | // TODO: If Settings has multiple levels, Up should navigate up
49 | // that hierarchy.
50 | NavUtils.navigateUpFromSameTask(this);
51 | return true;
52 | }
53 | return super.onOptionsItemSelected(item);
54 | }
55 |
56 | @Override
57 | protected void onPostCreate(Bundle savedInstanceState) {
58 | super.onPostCreate(savedInstanceState);
59 | addPreferencesFromResource(R.xml.preferences);
60 |
61 | }
62 |
63 |
64 |
65 |
66 | }
67 |
--------------------------------------------------------------------------------