├── pic1.png ├── pic2.png ├── res ├── raw │ ├── ac.wav │ ├── del.wav │ ├── div.wav │ ├── dot.wav │ ├── five.wav │ ├── four.wav │ ├── mul.wav │ ├── nine.wav │ ├── one.wav │ ├── plus.wav │ ├── six.wav │ ├── two.wav │ ├── zero.wav │ ├── eight.wav │ ├── equal.wav │ ├── minus.wav │ ├── seven.wav │ └── three.wav ├── drawable-hdpi │ ├── display.png │ ├── simple.png │ ├── advanced.png │ ├── btn_del.9.png │ ├── bg_calculator.png │ ├── clear_history.png │ ├── bg_history_item.png │ ├── btn_digit_normal.png │ ├── btn_digit_pressed.png │ ├── calc_clear_symbol.png │ ├── elv_toast_frame.9.png │ ├── ic_menu_overflow.png │ ├── btn_add_all_normal.png │ ├── btn_add_all_pressed.png │ ├── elv_ic_action_undo.png │ ├── history_action_bar.png │ ├── btn_clear_all_normal.png │ ├── btn_clear_all_pressed.png │ ├── history_item_bg_top.9.png │ ├── calculator_input_field.9.png │ ├── history_item_bg_bottom.9.png │ ├── history_item_bg_middle.9.png │ ├── history_item_bg_single.9.png │ ├── btn_keyboard_key_dark_normal_holo.9.png │ ├── btn_keyboard_key_dark_pressed_holo.9.png │ ├── btn_keyboard_key_light_normal_holo.9.png │ └── btn_keyboard_key_light_pressed_holo.9.png ├── drawable-mdpi │ ├── simple.png │ ├── advanced.png │ ├── clear_history.png │ ├── calc_clear_symbol.png │ ├── elv_toast_frame.9.png │ ├── ic_menu_overflow.png │ ├── elv_ic_action_undo.png │ ├── calculator_input_field.9.png │ ├── btn_keyboard_key_dark_normal_holo.9.png │ ├── btn_keyboard_key_dark_pressed_holo.9.png │ ├── btn_keyboard_key_light_normal_holo.9.png │ └── btn_keyboard_key_light_pressed_holo.9.png ├── drawable-ldpi │ ├── elv_toast_frame.9.png │ └── elv_ic_action_undo.png ├── drawable-xhdpi │ ├── ic_menu_overflow.png │ ├── calc_clear_symbol.png │ ├── elv_ic_action_undo.png │ ├── elv_toast_frame.9.png │ ├── calculator_input_field.9.png │ ├── btn_keyboard_key_dark_normal_holo.9.png │ ├── btn_keyboard_key_dark_pressed_holo.9.png │ ├── btn_keyboard_key_light_normal_holo.9.png │ └── btn_keyboard_key_light_pressed_holo.9.png ├── mipmap-hdpi │ └── ic_kevin_calculator.png ├── drawable-xxhdpi │ ├── elv_toast_frame.9.png │ └── elv_ic_action_undo.png ├── drawable-sw600dp-hdpi │ ├── calc_clear_symbol.png │ └── calculator_input_field.9.png ├── drawable-sw600dp-mdpi │ ├── calc_clear_symbol.png │ └── calculator_input_field.9.png ├── drawable │ ├── elv_popup_bg.xml │ ├── elv_undo_btn_bg_focused.xml │ ├── elv_undo_btn_bg_pressed.xml │ ├── above_shadow.xml │ ├── elv_undo_btn_bg.xml │ ├── btn_digit.xml │ ├── btn_add_all.xml │ ├── btn_clear_all.xml │ └── btn_function.xml ├── anim │ ├── elv_popup_hide.xml │ └── elv_popup_show.xml ├── values │ ├── dimens.xml │ ├── attrs.xml │ ├── constants.xml │ ├── colors.xml │ └── styles.xml ├── layout-port │ ├── history_pad.xml │ ├── list_item_history.xml │ └── advanced_pad.xml ├── values-sw600dp-port │ └── styles.xml ├── layout-land │ ├── history_item.xml │ ├── main.xml │ └── advanced_pad.xml ├── values-sw800dp-land │ └── styles.xml ├── values-sw800dp-port │ └── styles.xml ├── values-sw800dp │ └── styles.xml ├── menu │ └── menu.xml ├── layout │ └── elv_undo_popup.xml ├── values-sw600dp │ ├── arrays.xml │ └── styles.xml ├── values-land │ └── arrays.xml ├── values-port │ └── arrays.xml ├── values-zh-rCN │ └── strings.xml ├── values-zh-rHK │ └── strings.xml ├── values-zh-rTW │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-am │ └── strings.xml ├── values-iw │ └── strings.xml ├── values-fa │ └── strings.xml ├── values-lo-rLA │ └── strings.xml ├── values-th │ └── strings.xml ├── values-tr │ └── strings.xml ├── values-et-rEE │ └── strings.xml ├── values-et │ └── strings.xml ├── values-ar │ └── strings.xml ├── values-mn-rMN │ └── strings.xml ├── values-hi │ └── strings.xml ├── values-vi │ └── strings.xml ├── values-sw │ └── strings.xml ├── values-nb │ └── strings.xml ├── values-da │ └── strings.xml ├── values-en-rGB │ └── strings.xml ├── values-en-rIN │ └── strings.xml └── values-in │ └── strings.xml ├── libs ├── javalib.jar ├── arity-2.1.2.jar ├── android-support-v4.jar └── nineoldandroids-2.4.0.jar ├── KevinCalculator.apk ├── .gitattributes ├── project.properties ├── .gitignore ├── proguard-project.txt ├── AndroidManifest.xml ├── README.md └── src └── com └── kevinsoft └── calculator ├── CalculatorViewPager.java ├── HistoryEntry.java ├── ColorButton.java ├── Persist.java ├── History.java ├── CalculatorEditable.java ├── HistoryAdapter.java ├── EquationFormatter.java └── EventListener.java /pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/pic1.png -------------------------------------------------------------------------------- /pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/pic2.png -------------------------------------------------------------------------------- /res/raw/ac.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/ac.wav -------------------------------------------------------------------------------- /libs/javalib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/libs/javalib.jar -------------------------------------------------------------------------------- /res/raw/del.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/del.wav -------------------------------------------------------------------------------- /res/raw/div.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/div.wav -------------------------------------------------------------------------------- /res/raw/dot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/dot.wav -------------------------------------------------------------------------------- /res/raw/five.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/five.wav -------------------------------------------------------------------------------- /res/raw/four.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/four.wav -------------------------------------------------------------------------------- /res/raw/mul.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/mul.wav -------------------------------------------------------------------------------- /res/raw/nine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/nine.wav -------------------------------------------------------------------------------- /res/raw/one.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/one.wav -------------------------------------------------------------------------------- /res/raw/plus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/plus.wav -------------------------------------------------------------------------------- /res/raw/six.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/six.wav -------------------------------------------------------------------------------- /res/raw/two.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/two.wav -------------------------------------------------------------------------------- /res/raw/zero.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/zero.wav -------------------------------------------------------------------------------- /KevinCalculator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/KevinCalculator.apk -------------------------------------------------------------------------------- /res/raw/eight.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/eight.wav -------------------------------------------------------------------------------- /res/raw/equal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/equal.wav -------------------------------------------------------------------------------- /res/raw/minus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/minus.wav -------------------------------------------------------------------------------- /res/raw/seven.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/seven.wav -------------------------------------------------------------------------------- /res/raw/three.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/raw/three.wav -------------------------------------------------------------------------------- /libs/arity-2.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/libs/arity-2.1.2.jar -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/display.png -------------------------------------------------------------------------------- /res/drawable-hdpi/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/simple.png -------------------------------------------------------------------------------- /res/drawable-mdpi/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/simple.png -------------------------------------------------------------------------------- /libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/advanced.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_del.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_del.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/advanced.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/bg_calculator.png -------------------------------------------------------------------------------- /res/drawable-hdpi/clear_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/clear_history.png -------------------------------------------------------------------------------- /res/drawable-mdpi/clear_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/clear_history.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_history_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/bg_history_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_digit_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_digit_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_digit_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_digit_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calc_clear_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/calc_clear_symbol.png -------------------------------------------------------------------------------- /res/drawable-hdpi/elv_toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/elv_toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/ic_menu_overflow.png -------------------------------------------------------------------------------- /res/drawable-ldpi/elv_toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-ldpi/elv_toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calc_clear_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/calc_clear_symbol.png -------------------------------------------------------------------------------- /res/drawable-mdpi/elv_toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/elv_toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/ic_menu_overflow.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/ic_menu_overflow.png -------------------------------------------------------------------------------- /res/mipmap-hdpi/ic_kevin_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/mipmap-hdpi/ic_kevin_calculator.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_add_all_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_add_all_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_add_all_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_add_all_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/elv_ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/elv_ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_action_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/history_action_bar.png -------------------------------------------------------------------------------- /res/drawable-ldpi/elv_ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-ldpi/elv_ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/elv_ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/elv_ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calc_clear_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/calc_clear_symbol.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/elv_ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/elv_ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/elv_toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/elv_toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/elv_toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xxhdpi/elv_toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_clear_all_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_clear_all_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_clear_all_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_clear_all_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_item_bg_top.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/history_item_bg_top.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/elv_ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xxhdpi/elv_ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calculator_input_field.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/calculator_input_field.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_item_bg_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/history_item_bg_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_item_bg_middle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/history_item_bg_middle.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_item_bg_single.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/history_item_bg_single.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calculator_input_field.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/calculator_input_field.9.png -------------------------------------------------------------------------------- /res/drawable-sw600dp-hdpi/calc_clear_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-sw600dp-hdpi/calc_clear_symbol.png -------------------------------------------------------------------------------- /res/drawable-sw600dp-mdpi/calc_clear_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-sw600dp-mdpi/calc_clear_symbol.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calculator_input_field.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/calculator_input_field.9.png -------------------------------------------------------------------------------- /res/drawable-sw600dp-hdpi/calculator_input_field.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-sw600dp-hdpi/calculator_input_field.9.png -------------------------------------------------------------------------------- /res/drawable-sw600dp-mdpi/calculator_input_field.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-sw600dp-mdpi/calculator_input_field.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_keyboard_key_dark_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_keyboard_key_dark_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_keyboard_key_dark_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_keyboard_key_dark_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_keyboard_key_light_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_keyboard_key_light_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_keyboard_key_light_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-hdpi/btn_keyboard_key_light_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_keyboard_key_dark_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/btn_keyboard_key_dark_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_keyboard_key_dark_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/btn_keyboard_key_dark_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_keyboard_key_light_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/btn_keyboard_key_light_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_keyboard_key_light_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-mdpi/btn_keyboard_key_light_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_keyboard_key_dark_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/btn_keyboard_key_dark_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_keyboard_key_dark_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_keyboard_key_light_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/btn_keyboard_key_light_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_keyboard_key_light_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinChen9117/KevinCalculator/HEAD/res/drawable-xhdpi/btn_keyboard_key_light_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable/elv_popup_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/elv_undo_btn_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/elv_undo_btn_bg_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/elv_popup_hide.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /res/anim/elv_popup_show.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /res/drawable/above_shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15dp 5 | 6 | 32dp 7 | -------------------------------------------------------------------------------- /res/drawable/elv_undo_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/layout-port/history_pad.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /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-19 15 | android.library.reference.1=../EnLib 16 | android.library.reference.2=../SlidingUplib 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must end with two \r 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /res/values/constants.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 8 19 | -------------------------------------------------------------------------------- /res/values-sw600dp-port/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 48sp 18 | 19 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /res/layout-land/history_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | 17 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /res/values-sw800dp-land/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 48sp 18 | 48sp 19 | 48sp 20 | 21 | -------------------------------------------------------------------------------- /res/values-sw800dp-port/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 32sp 18 | 64sp 19 | 72sp 20 | 21 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/drawable/btn_digit.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 20 | 23 | 25 | 26 | -------------------------------------------------------------------------------- /res/drawable/btn_add_all.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 20 | 23 | 25 | 26 | -------------------------------------------------------------------------------- /res/drawable/btn_clear_all.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 20 | 23 | 25 | 26 | -------------------------------------------------------------------------------- /res/values-sw800dp/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 64sp 18 | 64sp 19 | 32sp 20 | 48sp 21 | 72sp 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/btn_function.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 22 | 24 | 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ====== 3 | # KevinCalculator 4 | This is a calculator with Chinese voice enabled which I implemented 1 year ago . 5 | It also has a beautiful UI.And better history list with swap to dismiss function. 6 | Also ,with functions to add all the results user calculated. 7 | Please feel free to give some advice. **This project is not well tested **. 8 | I hope someone submit bugs , then I can fix it. 9 | 10 | ## Screen shot 11 | ![](pic1.png) 12 | ![](pic2.png) 13 | 14 | 15 | 16 | ## License 17 | 18 | Copyright 2014 Kevin Chen 19 | 20 | Licensed under the Apache License, Version 2.0 (the "License"); 21 | you may not use this file except in compliance with the License. 22 | You may obtain a copy of the License at 23 | 24 | http://www.apache.org/licenses/LICENSE-2.0 25 | 26 | Unless required by applicable law or agreed to in writing, software 27 | distributed under the License is distributed on an "AS IS" BASIS, 28 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 29 | See the License for the specific language governing permissions and 30 | limitations under the License. -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | #00ffffff 19 | #ffffffff 20 | #ff33b5e5 21 | #ff0099cc 22 | #00000000 23 | 24 | #EE666666 25 | #BBBBBB 26 | #FFFFFF 27 | 28 | -------------------------------------------------------------------------------- /res/menu/menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 26 | 27 | 31 | 32 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /res/layout/elv_undo_popup.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 18 | 27 |