├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── Android.mk ├── AndroidManifest.xml ├── CleanSpec.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── build.gradle ├── libs ├── arity-2.1.6.jar └── ejml-0.21.jar ├── proguard.flags ├── res ├── anim │ └── blank.xml ├── color │ ├── pad_button_advanced_text_color.xml │ ├── pad_button_text_color.xml │ ├── pad_button_toggle_text_color.xml │ └── view_pager_indicator_color.xml ├── drawable-hdpi │ ├── btn_close.png │ ├── btn_graph.png │ ├── btn_reset.png │ ├── btn_zoomin.png │ ├── btn_zoomout.png │ ├── button_big.png │ ├── circle.9.png │ ├── color_card.9.png │ ├── egg.png │ ├── floating_calc_background.9.png │ ├── history_divider.png │ ├── ic_launcher_floating.png │ ├── line.9.png │ ├── matrix_background.9.png │ ├── white_card.9.png │ ├── widget_clear.png │ ├── widget_delete.png │ ├── widget_preview.png │ └── x.png ├── drawable-mdpi │ ├── btn_close.png │ ├── btn_graph.png │ ├── btn_reset.png │ ├── btn_zoomin.png │ ├── btn_zoomout.png │ ├── button_big.png │ ├── circle.9.png │ ├── color_card.9.png │ ├── egg.png │ ├── floating_calc_background.9.png │ ├── history_divider.png │ ├── ic_launcher_floating.png │ ├── line.9.png │ ├── matrix_background.9.png │ ├── white_card.9.png │ ├── widget_clear.png │ ├── widget_delete.png │ ├── widget_preview.png │ └── x.png ├── drawable-v21 │ ├── pad_button_advanced_background.xml │ └── pad_button_background.xml ├── drawable-xhdpi │ ├── btn_close.png │ ├── btn_graph.png │ ├── btn_reset.png │ ├── btn_zoomin.png │ ├── btn_zoomout.png │ ├── button_big.png │ ├── circle.9.png │ ├── color_card.9.png │ ├── egg.png │ ├── floating_calc_background.9.png │ ├── ic_launcher_floating.png │ ├── line.9.png │ ├── matrix_background.9.png │ ├── white_card.9.png │ ├── widget_clear.png │ ├── widget_delete.png │ ├── widget_preview.png │ └── x.png ├── drawable-xxhdpi │ ├── btn_close.png │ ├── btn_graph.png │ ├── btn_reset.png │ ├── btn_zoomin.png │ ├── btn_zoomout.png │ ├── button_big.png │ ├── circle.9.png │ ├── color_card.9.png │ ├── egg.png │ ├── floating_calc_background.9.png │ ├── ic_launcher_floating.png │ ├── line.9.png │ ├── matrix_background.9.png │ ├── white_card.9.png │ ├── widget_clear.png │ ├── widget_delete.png │ ├── widget_preview.png │ └── x.png ├── drawable-xxxhdpi │ ├── button_big.png │ ├── circle.9.png │ ├── color_card.9.png │ ├── egg.png │ ├── floating_calc_background.9.png │ ├── ic_launcher_floating.png │ ├── line.9.png │ ├── matrix_background.9.png │ ├── white_card.9.png │ ├── widget_clear.png │ ├── widget_delete.png │ ├── widget_preview.png │ └── x.png ├── drawable │ ├── circle_bg.xml │ ├── delete_background.xml │ ├── menu_bg.xml │ ├── pad_button_advanced_background.xml │ ├── pad_button_background.xml │ └── view_pager_indicator.xml ├── layout-land │ └── activity_calculator.xml ├── layout-sw600dp-port │ └── activity_calculator.xml ├── layout │ ├── activity_calculator.xml │ ├── display.xml │ ├── equals_graph_button.xml │ ├── floating_calculator.xml │ ├── floating_calculator_advanced.xml │ ├── floating_calculator_basic.xml │ ├── floating_calculator_history.xml │ ├── floating_calculator_icon.xml │ ├── floating_delete_box.xml │ ├── floating_history_entry.xml │ ├── graph_display.xml │ ├── history_entry.xml │ ├── history_panel.xml │ ├── pad_advanced.xml │ ├── pad_auxiliary.xml │ ├── pad_hex.xml │ ├── pad_matrix.xml │ ├── pad_numeric.xml │ ├── pad_operator_one_col.xml │ ├── pad_operator_two_col.xml │ ├── view_edittext.xml │ └── widget.xml ├── mipmap-hdpi │ └── ic_launcher_calculator.png ├── mipmap-mdpi │ └── ic_launcher_calculator.png ├── mipmap-xhdpi │ └── ic_launcher_calculator.png ├── mipmap-xxhdpi │ └── ic_launcher_calculator.png ├── mipmap-xxxhdpi │ └── ic_launcher_calculator.png ├── values-af │ ├── cm_strings.xml │ └── strings.xml ├── values-am │ ├── cm_strings.xml │ └── strings.xml ├── values-ar │ ├── cm_strings.xml │ └── strings.xml ├── values-as-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-ast-rES │ ├── cm_strings.xml │ └── strings.xml ├── values-az-rAZ │ ├── cm_strings.xml │ └── strings.xml ├── values-be │ ├── cm_strings.xml │ └── strings.xml ├── values-bg │ ├── cm_strings.xml │ └── strings.xml ├── values-bn-rBD │ ├── cm_strings.xml │ └── strings.xml ├── values-br-rFR │ ├── cm_strings.xml │ └── strings.xml ├── values-bs-rBA │ ├── cm_strings.xml │ └── strings.xml ├── values-ca │ ├── cm_strings.xml │ └── strings.xml ├── values-cs │ ├── cm_strings.xml │ └── strings.xml ├── values-csb-rPL │ ├── cm_strings.xml │ └── strings.xml ├── values-cy │ ├── cm_strings.xml │ └── strings.xml ├── values-da │ ├── cm_strings.xml │ └── strings.xml ├── values-de │ ├── cm_strings.xml │ └── strings.xml ├── values-el │ ├── cm_strings.xml │ └── strings.xml ├── values-en-rAU │ ├── cm_strings.xml │ └── strings.xml ├── values-en-rGB │ ├── cm_strings.xml │ └── strings.xml ├── values-en-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-en-rPT │ ├── cm_strings.xml │ └── strings.xml ├── values-en │ └── strings.xml ├── values-eo │ ├── cm_strings.xml │ └── strings.xml ├── values-es-rCO │ ├── cm_strings.xml │ └── strings.xml ├── values-es-rMX │ ├── cm_strings.xml │ └── strings.xml ├── values-es-rUS │ ├── cm_strings.xml │ └── strings.xml ├── values-es │ ├── cm_strings.xml │ └── strings.xml ├── values-et-rEE │ ├── cm_strings.xml │ └── strings.xml ├── values-eu-rES │ ├── cm_strings.xml │ └── strings.xml ├── values-fa │ ├── cm_strings.xml │ ├── config.xml │ └── strings.xml ├── values-fi │ ├── cm_strings.xml │ └── strings.xml ├── values-fil-rPH │ └── cm_strings.xml ├── values-fr-rCA │ ├── cm_strings.xml │ └── strings.xml ├── values-fr │ ├── cm_strings.xml │ └── strings.xml ├── values-frp-rIT │ ├── cm_strings.xml │ └── strings.xml ├── values-fy-rNL │ ├── cm_strings.xml │ └── strings.xml ├── values-ga-rIE │ ├── cm_strings.xml │ └── strings.xml ├── values-gd-rGB │ ├── cm_strings.xml │ └── strings.xml ├── values-gl-rES │ ├── cm_strings.xml │ └── strings.xml ├── values-gu-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-hi │ ├── cm_strings.xml │ └── strings.xml ├── values-hr │ ├── cm_strings.xml │ └── strings.xml ├── values-hu │ ├── cm_strings.xml │ └── strings.xml ├── values-hy-rAM │ ├── cm_strings.xml │ └── strings.xml ├── values-in │ ├── cm_strings.xml │ └── strings.xml ├── values-is-rIS │ ├── cm_strings.xml │ └── strings.xml ├── values-it │ ├── cm_strings.xml │ └── strings.xml ├── values-iw │ ├── cm_strings.xml │ └── strings.xml ├── values-ja │ ├── cm_strings.xml │ └── strings.xml ├── values-ka-rGE │ ├── cm_strings.xml │ └── strings.xml ├── values-kk-rKZ │ ├── cm_strings.xml │ └── strings.xml ├── values-km-rKH │ ├── cm_strings.xml │ └── strings.xml ├── values-kn-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-ko │ ├── cm_strings.xml │ └── strings.xml ├── values-ku │ ├── cm_strings.xml │ └── strings.xml ├── values-ky-rKG │ ├── cm_strings.xml │ └── strings.xml ├── values-land │ ├── dimens.xml │ └── styles.xml ├── values-lb │ ├── cm_strings.xml │ └── strings.xml ├── values-lo-rLA │ ├── cm_strings.xml │ └── strings.xml ├── values-lt │ ├── cm_strings.xml │ └── strings.xml ├── values-lv │ ├── cm_strings.xml │ └── strings.xml ├── values-mk-rMK │ ├── cm_strings.xml │ └── strings.xml ├── values-ml-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-mn-rMN │ ├── cm_strings.xml │ └── strings.xml ├── values-mr-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-ms-rMY │ ├── cm_strings.xml │ └── strings.xml ├── values-my-rMM │ ├── cm_strings.xml │ └── strings.xml ├── values-nb │ ├── cm_strings.xml │ └── strings.xml ├── values-ne-rNP │ ├── cm_strings.xml │ └── strings.xml ├── values-nl │ ├── cm_strings.xml │ └── strings.xml ├── values-oc-rFR │ ├── cm_strings.xml │ └── strings.xml ├── values-or-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-pa-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-pl │ ├── cm_strings.xml │ └── strings.xml ├── values-port-v17 │ └── styles.xml ├── values-pt-rBR │ └── cm_strings.xml ├── values-pt-rPT │ ├── cm_strings.xml │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-rm │ └── cm_strings.xml ├── values-ro │ ├── cm_strings.xml │ └── strings.xml ├── values-ru │ ├── cm_strings.xml │ └── strings.xml ├── values-si-rLK │ ├── cm_strings.xml │ └── strings.xml ├── values-sk │ ├── cm_strings.xml │ └── strings.xml ├── values-sl │ ├── cm_strings.xml │ └── strings.xml ├── values-sq-rAL │ ├── cm_strings.xml │ └── strings.xml ├── values-sr │ ├── cm_strings.xml │ └── strings.xml ├── values-sv │ ├── cm_strings.xml │ └── strings.xml ├── values-sw │ ├── cm_strings.xml │ └── strings.xml ├── values-sw600dp-land-v17 │ └── styles.xml ├── values-sw600dp-land │ └── styles.xml ├── values-sw600dp-port-v17 │ └── styles.xml ├── values-sw600dp-port │ └── styles.xml ├── values-sw800dp-land-v17 │ └── styles.xml ├── values-sw800dp-land │ └── styles.xml ├── values-sw800dp-port-v17 │ └── styles.xml ├── values-sw800dp-port │ └── styles.xml ├── values-ta-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-te-rIN │ ├── cm_strings.xml │ └── strings.xml ├── values-th │ ├── cm_strings.xml │ └── strings.xml ├── values-tl │ └── strings.xml ├── values-tr │ ├── cm_strings.xml │ └── strings.xml ├── values-ug │ ├── cm_strings.xml │ └── strings.xml ├── values-uk │ ├── cm_strings.xml │ └── strings.xml ├── values-ur-rPK │ ├── cm_strings.xml │ └── strings.xml ├── values-uz-rUZ │ ├── cm_strings.xml │ └── strings.xml ├── values-v16 │ └── styles.xml ├── values-v21 │ └── styles.xml ├── values-vi │ ├── cm_strings.xml │ └── strings.xml ├── values-zh-rCN │ ├── cm_strings.xml │ └── strings.xml ├── values-zh-rHK │ ├── cm_strings.xml │ └── strings.xml ├── values-zh-rTW │ ├── cm_strings.xml │ └── strings.xml ├── values-zu │ ├── cm_strings.xml │ └── strings.xml ├── values │ ├── attrs.xml │ ├── cm_colors.xml │ ├── cm_dimens.xml │ ├── cm_strings.xml │ ├── color.xml │ ├── config.xml │ ├── dimens.xml │ ├── donottranslate_strings.xml │ ├── strings.xml │ └── styles.xml └── xml │ └── calculator_widget_info.xml └── src └── com ├── android └── calculator2 │ ├── Calculator.java │ ├── CalculatorExpressionEvaluator.java │ ├── CalculatorExpressionTokenizer.java │ ├── CalculatorNumericPadLayout.java │ ├── CalculatorPadLayout.java │ ├── CalculatorPadViewPager.java │ ├── Clipboard.java │ ├── GraphController.java │ ├── HistoryAdapter.java │ ├── NumberBaseManager.java │ ├── floating │ ├── FloatingCalculator.java │ ├── FloatingCalculatorCreateShortCutActivity.java │ ├── FloatingCalculatorOpenShortCutActivity.java │ ├── FloatingCalculatorPageAdapter.java │ └── FloatingHistoryAdapter.java │ ├── util │ ├── AnimationUtil.java │ └── DigitLabelHelper.java │ ├── view │ ├── AutoFitButtonView.java │ ├── AuxPadView.java │ ├── CalculatorEditable.java │ ├── DisplayOverlay.java │ ├── GraphView.java │ ├── HistoryLine.java │ ├── MatrixEditText.java │ ├── MatrixInverseView.java │ ├── MatrixTransposeView.java │ ├── MatrixView.java │ ├── MultiButton.java │ ├── ScrollableDisplay.java │ ├── TextUtil.java │ └── display │ │ ├── AdvancedDisplay.java │ │ ├── AdvancedDisplayControls.java │ │ ├── CalculatorEditText.java │ │ ├── DisplayComponent.java │ │ ├── EventListener.java │ │ ├── MenuHandler.java │ │ └── Sync.java │ ├── viewpager │ ├── PagerAdapter.java │ └── VerticalViewPager.java │ └── widget │ └── CalculatorWidget.java └── xlythe ├── floatingview ├── AnimationFinishedListener.java ├── FloatingActivity.java ├── FloatingView.java └── LimitedQueue.java └── math ├── Base.java ├── BaseModule.java ├── Constants.java ├── EquationFormatter.java ├── GraphModule.java ├── History.java ├── HistoryEntry.java ├── Localizer.java ├── MatrixModule.java ├── Module.java ├── Persist.java ├── Point.java ├── Solver.java ├── SpellContext.java ├── SpellException.java └── Voice.java /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | *.iml -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Calculator3 -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2008 The Android Open Source Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | LOCAL_PATH := $(call my-dir) 18 | include $(CLEAR_VARS) 19 | 20 | LOCAL_MODULE_TAGS := optional 21 | 22 | LOCAL_STATIC_JAVA_LIBRARIES := libarity android-support-v4 guava ejml \ 23 | android-support-v7-recyclerview 24 | 25 | LOCAL_SRC_FILES := $(call all-java-files-under, src) 26 | 27 | LOCAL_SDK_VERSION := current 28 | 29 | LOCAL_OVERRIDES_PACKAGES := ExactCalculator 30 | LOCAL_PACKAGE_NAME := Calculator 31 | 32 | res_dir := res ../../../prebuilts/sdk/current/support/v7/appcompat/res \ 33 | ../../../prebuilts/sdk/current/support/v7/recyclerview/res 34 | 35 | LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dir)) 36 | 37 | LOCAL_AAPT_FLAGS := --auto-add-overlay \ 38 | --extra-packages com.xlythe.floatingview2 \ 39 | --extra-packages android.support.v7.recyclerview 40 | 41 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags 42 | 43 | include $(BUILD_PACKAGE) 44 | 45 | include $(CLEAR_VARS) 46 | LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \ 47 | ejml:libs/ejml-0.21.jar \ 48 | libarity:libs/arity-2.1.6.jar 49 | 50 | include $(BUILD_MULTI_PREBUILT) 51 | 52 | # Use the following include to make our test apk. 53 | include $(call all-makefiles-under,$(LOCAL_PATH)) 54 | -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2007 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | 16 | # If you don't need to do a full clean build but would like to touch 17 | # a file or delete some intermediate files, add a clean step to the end 18 | # of the list. These steps will only be run once, if they haven't been 19 | # run before. 20 | # 21 | # E.g.: 22 | # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 | # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 24 | # 25 | # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with 26 | # files that are missing or have been moved. 27 | # 28 | # Use $(PRODUCT_OUT) to get to the "out/target/product/blah/" directory. 29 | # Use $(OUT_DIR) to refer to the "out" directory. 30 | # 31 | # If you need to re-do something that's already mentioned, just copy 32 | # the command and add it to the bottom of the list. E.g., if a change 33 | # that you made last week required touching a file and a change you 34 | # made today requires touching the same file, just copy the old 35 | # touch step and add it to the end of the list. 36 | # 37 | # ************************************************ 38 | # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST 39 | # ************************************************ 40 | 41 | # For example: 42 | #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 | #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 | #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 | #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 46 | 47 | # ************************************************ 48 | # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST 49 | # ************************************************ 50 | -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/MODULE_LICENSE_APACHE2 -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:0.12.2' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /libs/arity-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/libs/arity-2.1.6.jar -------------------------------------------------------------------------------- /libs/ejml-0.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/libs/ejml-0.21.jar -------------------------------------------------------------------------------- /proguard.flags: -------------------------------------------------------------------------------- 1 | -dontwarn org.ejml.ops.** 2 | 3 | -keep class java.awt.** { *; } 4 | -keep class javax.swing.** { *; } 5 | 6 | -dontnote javax.swing.** 7 | -dontwarn javax.swing.** 8 | -dontnote java.awt.** 9 | -dontwarn java.awt.** 10 | 11 | # Needed when building against the Marshmallow SDK 12 | -dontwarn android.support.** 13 | -------------------------------------------------------------------------------- /res/anim/blank.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /res/color/pad_button_advanced_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/color/pad_button_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/color/pad_button_toggle_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/color/view_pager_indicator_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/btn_close.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/btn_graph.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/btn_reset.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/btn_zoomin.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/btn_zoomout.png -------------------------------------------------------------------------------- /res/drawable-hdpi/button_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/button_big.png -------------------------------------------------------------------------------- /res/drawable-hdpi/circle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/circle.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/color_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/color_card.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/egg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/floating_calc_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/floating_calc_background.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/history_divider.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/ic_launcher_floating.png -------------------------------------------------------------------------------- /res/drawable-hdpi/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/line.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/matrix_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/matrix_background.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/white_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/white_card.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/widget_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/widget_clear.png -------------------------------------------------------------------------------- /res/drawable-hdpi/widget_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/widget_delete.png -------------------------------------------------------------------------------- /res/drawable-hdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/widget_preview.png -------------------------------------------------------------------------------- /res/drawable-hdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-hdpi/x.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/btn_close.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/btn_graph.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/btn_reset.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/btn_zoomin.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/btn_zoomout.png -------------------------------------------------------------------------------- /res/drawable-mdpi/button_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/button_big.png -------------------------------------------------------------------------------- /res/drawable-mdpi/circle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/circle.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/color_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/color_card.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/egg.png -------------------------------------------------------------------------------- /res/drawable-mdpi/floating_calc_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/floating_calc_background.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/history_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/history_divider.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/ic_launcher_floating.png -------------------------------------------------------------------------------- /res/drawable-mdpi/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/line.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/matrix_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/matrix_background.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/white_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/white_card.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/widget_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/widget_clear.png -------------------------------------------------------------------------------- /res/drawable-mdpi/widget_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/widget_delete.png -------------------------------------------------------------------------------- /res/drawable-mdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/widget_preview.png -------------------------------------------------------------------------------- /res/drawable-mdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-mdpi/x.png -------------------------------------------------------------------------------- /res/drawable-v21/pad_button_advanced_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /res/drawable-v21/pad_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/btn_close.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/btn_graph.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/btn_reset.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/btn_zoomin.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/btn_zoomout.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/button_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/button_big.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/circle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/circle.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/color_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/color_card.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/egg.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/floating_calc_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/floating_calc_background.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher_floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/ic_launcher_floating.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/line.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/matrix_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/matrix_background.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/white_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/white_card.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/widget_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/widget_clear.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/widget_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/widget_delete.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/widget_preview.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xhdpi/x.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/btn_close.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/btn_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/btn_graph.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/btn_reset.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/btn_zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/btn_zoomin.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/btn_zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/btn_zoomout.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/button_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/button_big.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/circle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/circle.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/color_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/color_card.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/egg.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/floating_calc_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/floating_calc_background.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher_floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/ic_launcher_floating.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/line.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/matrix_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/matrix_background.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/white_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/white_card.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/widget_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/widget_clear.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/widget_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/widget_delete.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/widget_preview.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxhdpi/x.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/button_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/button_big.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/circle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/circle.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/color_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/color_card.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/egg.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/floating_calc_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/floating_calc_background.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_launcher_floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/ic_launcher_floating.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/line.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/matrix_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/matrix_background.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/white_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/white_card.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/widget_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/widget_clear.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/widget_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/widget_delete.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/widget_preview.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Calculator/eaa40209d7722549240f5c7414abaa2cd46071b6/res/drawable-xxxhdpi/x.png -------------------------------------------------------------------------------- /res/drawable/circle_bg.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/drawable/delete_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | -------------------------------------------------------------------------------- /res/drawable/menu_bg.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/drawable/pad_button_advanced_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/drawable/pad_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/drawable/view_pager_indicator.xml: -------------------------------------------------------------------------------- 1 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/layout-land/activity_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | 24 | 27 | 28 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /res/layout-sw600dp-port/activity_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 22 | 23 | 26 | 27 | 34 | 35 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /res/layout/activity_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 22 | 23 | 26 | 27 | 34 | 35 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /res/layout/display.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 25 | 26 | 29 | 30 | 31 | 32 | 37 | 38 | 42 | 43 | 52 | 53 | 63 | 64 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /res/layout/equals_graph_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 21 | 22 |