blob: 27b0e0c899de33d819de73cd32ddeec1fd9ded3d [file] [log] [blame]
Justin Klaassen4b3af052014-05-27 17:53:10 -07001/*
Justin Klaassen12da1ad2016-04-04 14:20:37 -07002 * Copyright (C) 2016 The Android Open Source Project
Justin Klaassen4b3af052014-05-27 17:53:10 -07003 *
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
Hans Boehm013969e2015-04-13 20:29:47 -070017// TODO: Copy & more general paste in formula? Note that this requires
18// great care: Currently the text version of a displayed formula
19// is not directly useful for re-evaluating the formula later, since
20// it contains ellipses representing subexpressions evaluated with
21// a different degree mode. Rather than supporting copy from the
22// formula window, we may eventually want to support generation of a
23// more useful text version in a separate window. It's not clear
24// this is worth the added (code and user) complexity.
Hans Boehm84614952014-11-25 18:46:17 -080025
Justin Klaassen4b3af052014-05-27 17:53:10 -070026package com.android.calculator2;
27
28import android.animation.Animator;
Justin Klaassen5f2a3342014-06-11 17:40:22 -070029import android.animation.Animator.AnimatorListener;
Justin Klaassen4b3af052014-05-27 17:53:10 -070030import android.animation.AnimatorListenerAdapter;
31import android.animation.AnimatorSet;
Justin Klaassen4b3af052014-05-27 17:53:10 -070032import android.animation.ObjectAnimator;
Justin Klaassen44595162015-05-28 17:55:20 -070033import android.animation.PropertyValuesHolder;
Justin Klaassen9d33cdc2016-02-21 14:16:14 -080034import android.app.ActionBar;
Justin Klaassen4b3af052014-05-27 17:53:10 -070035import android.app.Activity;
Annie Chin06fd3cf2016-11-07 16:04:33 -080036import android.app.FragmentManager;
Annie Chin09547532016-10-14 10:59:07 -070037import android.app.FragmentTransaction;
Justin Klaassenfc5ac822015-06-18 13:15:17 -070038import android.content.ClipData;
Hans Boehm5e6a0ca2015-09-22 17:09:01 -070039import android.content.DialogInterface;
Justin Klaassend36d63e2015-05-05 12:59:36 -070040import android.content.Intent;
Hans Boehmbfe8c222015-04-02 16:26:07 -070041import android.content.res.Resources;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070042import android.graphics.Color;
Justin Klaassen8fff1442014-06-19 10:43:29 -070043import android.graphics.Rect;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070044import android.net.Uri;
Justin Klaassen4b3af052014-05-27 17:53:10 -070045import android.os.Bundle;
Justin Klaassenf79d6f62014-08-26 12:27:08 -070046import android.support.annotation.NonNull;
Christine Frankscbc51fa2017-01-04 21:00:36 -080047import android.support.annotation.StringRes;
Chenjie Yu3937b652016-06-01 23:14:26 -070048import android.support.v4.content.ContextCompat;
Justin Klaassen3b4d13d2014-06-06 18:18:37 +010049import android.support.v4.view.ViewPager;
Annie Chine918fd22016-03-09 11:07:54 -080050import android.text.Editable;
Hans Boehm8a4f81c2015-07-09 10:41:25 -070051import android.text.SpannableStringBuilder;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070052import android.text.Spanned;
Annie Chinf360ef02016-03-10 13:45:39 -080053import android.text.TextUtils;
Annie Chine918fd22016-03-09 11:07:54 -080054import android.text.TextWatcher;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070055import android.text.style.ForegroundColorSpan;
Annie Chin532b77e2016-12-06 13:30:35 -080056import android.util.Log;
Justin Klaassen44595162015-05-28 17:55:20 -070057import android.util.Property;
Annie Chine918fd22016-03-09 11:07:54 -080058import android.view.ActionMode;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070059import android.view.KeyCharacterMap;
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -070060import android.view.KeyEvent;
Hans Boehm84614952014-11-25 18:46:17 -080061import android.view.Menu;
62import android.view.MenuItem;
Annie Chind0f87d22016-10-24 09:04:12 -070063import android.view.MotionEvent;
Justin Klaassen4b3af052014-05-27 17:53:10 -070064import android.view.View;
65import android.view.View.OnLongClickListener;
Justin Klaassen5f2a3342014-06-11 17:40:22 -070066import android.view.ViewAnimationUtils;
Justin Klaassen8fff1442014-06-19 10:43:29 -070067import android.view.ViewGroupOverlay;
Annie Chine918fd22016-03-09 11:07:54 -080068import android.view.ViewTreeObserver;
Justin Klaassen4b3af052014-05-27 17:53:10 -070069import android.view.animation.AccelerateDecelerateInterpolator;
Annie Chind0f87d22016-10-24 09:04:12 -070070import android.widget.FrameLayout;
Annie Chine918fd22016-03-09 11:07:54 -080071import android.widget.HorizontalScrollView;
Justin Klaassenfed941a2014-06-09 18:42:40 +010072import android.widget.TextView;
Justin Klaassend48b7562015-04-16 16:51:38 -070073import android.widget.Toolbar;
Justin Klaassenfed941a2014-06-09 18:42:40 +010074
Christine Franks7452d3a2016-10-27 13:41:18 -070075import com.android.calculator2.CalculatorFormula.OnTextSizeChangeListener;
Hans Boehm84614952014-11-25 18:46:17 -080076
77import java.io.ByteArrayInputStream;
Hans Boehm84614952014-11-25 18:46:17 -080078import java.io.ByteArrayOutputStream;
Hans Boehm84614952014-11-25 18:46:17 -080079import java.io.IOException;
Justin Klaassen721ec842015-05-28 14:30:08 -070080import java.io.ObjectInput;
81import java.io.ObjectInputStream;
82import java.io.ObjectOutput;
83import java.io.ObjectOutputStream;
Christine Franksbd90b792016-11-22 10:28:26 -080084import java.text.DecimalFormatSymbols;
Justin Klaassen4b3af052014-05-27 17:53:10 -070085
Christine Franks1d99be12016-11-14 14:00:36 -080086import static com.android.calculator2.CalculatorFormula.OnFormulaContextMenuClickListener;
87
Hans Boehm8f051c32016-10-03 16:53:58 -070088public class Calculator extends Activity
Christine Franks1d99be12016-11-14 14:00:36 -080089 implements OnTextSizeChangeListener, OnLongClickListener,
Annie Chin52eed7a2017-01-04 15:06:05 -080090 AlertDialogFragment.OnClickListener, Evaluator.EvaluationListener /* for main result */,
91 DragLayout.CloseCallback, DragLayout.DragCallback {
Justin Klaassen2be4fdb2014-08-06 19:54:09 -070092
Annie Chin9a211132016-11-30 12:52:06 -080093 private static final String TAG = "Calculator";
Justin Klaassen2be4fdb2014-08-06 19:54:09 -070094 /**
95 * Constant for an invalid resource id.
96 */
97 public static final int INVALID_RES_ID = -1;
Justin Klaassen4b3af052014-05-27 17:53:10 -070098
99 private enum CalculatorState {
Hans Boehm84614952014-11-25 18:46:17 -0800100 INPUT, // Result and formula both visible, no evaluation requested,
101 // Though result may be visible on bottom line.
102 EVALUATE, // Both visible, evaluation requested, evaluation/animation incomplete.
Hans Boehmc1ea0912015-06-19 15:05:07 -0700103 // Not used for instant result evaluation.
Hans Boehm84614952014-11-25 18:46:17 -0800104 INIT, // Very temporary state used as alternative to EVALUATE
105 // during reinitialization. Do not animate on completion.
Hans Boehma5ea8eb2016-12-01 12:33:38 -0800106 INIT_FOR_RESULT, // Identical to INIT, but evaluation is known to terminate
107 // with result, and current expression has been copied to history.
Hans Boehm84614952014-11-25 18:46:17 -0800108 ANIMATE, // Result computed, animation to enlarge result window in progress.
109 RESULT, // Result displayed, formula invisible.
110 // If we are in RESULT state, the formula was evaluated without
111 // error to initial precision.
Hans Boehm8f051c32016-10-03 16:53:58 -0700112 // The current formula is now also the last history entry.
Hans Boehm84614952014-11-25 18:46:17 -0800113 ERROR // Error displayed: Formula visible, result shows error message.
114 // Display similar to INPUT state.
Justin Klaassen4b3af052014-05-27 17:53:10 -0700115 }
Hans Boehm84614952014-11-25 18:46:17 -0800116 // Normal transition sequence is
117 // INPUT -> EVALUATE -> ANIMATE -> RESULT (or ERROR) -> INPUT
118 // A RESULT -> ERROR transition is possible in rare corner cases, in which
119 // a higher precision evaluation exposes an error. This is possible, since we
120 // initially evaluate assuming we were given a well-defined problem. If we
121 // were actually asked to compute sqrt(<extremely tiny negative number>) we produce 0
122 // unless we are asked for enough precision that we can distinguish the argument from zero.
Hans Boehma5ea8eb2016-12-01 12:33:38 -0800123 // ERROR and RESULT are translated to INIT or INIT_FOR_RESULT state if the application
Hans Boehm84614952014-11-25 18:46:17 -0800124 // is restarted in that state. This leads us to recompute and redisplay the result
Hans Boehma5ea8eb2016-12-01 12:33:38 -0800125 // ASAP. We avoid saving the ANIMATE state or activating history in that state.
126 // In INIT_FOR_RESULT, and RESULT state, a copy of the current
127 // expression has been saved in the history db; in the other non-ANIMATE states,
128 // it has not.
Hans Boehm84614952014-11-25 18:46:17 -0800129 // TODO: Possibly save a bit more information, e.g. its initial display string
130 // or most significant digit position, to speed up restart.
Justin Klaassen4b3af052014-05-27 17:53:10 -0700131
Justin Klaassen44595162015-05-28 17:55:20 -0700132 private final Property<TextView, Integer> TEXT_COLOR =
133 new Property<TextView, Integer>(Integer.class, "textColor") {
134 @Override
135 public Integer get(TextView textView) {
136 return textView.getCurrentTextColor();
137 }
138
139 @Override
140 public void set(TextView textView, Integer textColor) {
141 textView.setTextColor(textColor);
142 }
143 };
144
Justin Klaassen3e223ea2016-02-05 14:18:06 -0800145 private static final String NAME = "Calculator";
Hans Boehm84614952014-11-25 18:46:17 -0800146 private static final String KEY_DISPLAY_STATE = NAME + "_display_state";
Hans Boehm760a9dc2015-04-20 10:27:12 -0700147 private static final String KEY_UNPROCESSED_CHARS = NAME + "_unprocessed_chars";
Justin Klaassen3e223ea2016-02-05 14:18:06 -0800148 /**
149 * Associated value is a byte array holding the evaluator state.
150 */
Hans Boehm84614952014-11-25 18:46:17 -0800151 private static final String KEY_EVAL_STATE = NAME + "_eval_state";
Justin Klaassen3e223ea2016-02-05 14:18:06 -0800152 private static final String KEY_INVERSE_MODE = NAME + "_inverse_mode";
Christine Frankseeff27f2016-07-29 12:05:29 -0700153 /**
154 * Associated value is an boolean holding the visibility state of the toolbar.
155 */
156 private static final String KEY_SHOW_TOOLBAR = NAME + "_show_toolbar";
Justin Klaassen741471e2014-06-11 09:43:44 -0700157
Annie Chine918fd22016-03-09 11:07:54 -0800158 private final ViewTreeObserver.OnPreDrawListener mPreDrawListener =
159 new ViewTreeObserver.OnPreDrawListener() {
160 @Override
161 public boolean onPreDraw() {
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700162 mFormulaContainer.scrollTo(mFormulaText.getRight(), 0);
Annie Chine918fd22016-03-09 11:07:54 -0800163 final ViewTreeObserver observer = mFormulaContainer.getViewTreeObserver();
164 if (observer.isAlive()) {
165 observer.removeOnPreDrawListener(this);
166 }
167 return false;
168 }
169 };
170
Christine Frankscbc51fa2017-01-04 21:00:36 -0800171 private final Evaluator.Callback mEvaluatorCallback = new Evaluator.Callback() {
172 @Override
173 public void onMemoryStateChanged() {
174 mFormulaText.onMemoryStateChanged();
175 }
176
177 @Override
178 public void showMessageDialog(@StringRes int title, @StringRes int message,
179 @StringRes int positiveButtonLabel, String tag) {
180 AlertDialogFragment.showMessageDialog(Calculator.this, title, message,
181 positiveButtonLabel, tag);
182
183 }
184 };
185
186 private final OnDisplayMemoryOperationsListener mOnDisplayMemoryOperationsListener =
Christine Franks1d99be12016-11-14 14:00:36 -0800187 new OnDisplayMemoryOperationsListener() {
188 @Override
189 public boolean shouldDisplayMemory() {
190 return mEvaluator.getMemoryIndex() != 0;
191 }
192 };
193
Christine Frankscbc51fa2017-01-04 21:00:36 -0800194 private final OnFormulaContextMenuClickListener mOnFormulaContextMenuClickListener =
Christine Franks1d99be12016-11-14 14:00:36 -0800195 new OnFormulaContextMenuClickListener() {
196 @Override
197 public boolean onPaste(ClipData clip) {
198 final ClipData.Item item = clip.getItemCount() == 0 ? null : clip.getItemAt(0);
199 if (item == null) {
200 // nothing to paste, bail early...
201 return false;
202 }
203
204 // Check if the item is a previously copied result, otherwise paste as raw text.
205 final Uri uri = item.getUri();
206 if (uri != null && mEvaluator.isLastSaved(uri)) {
207 clearIfNotInputState();
208 mEvaluator.appendExpr(mEvaluator.getSavedIndex());
209 redisplayAfterFormulaChange();
210 } else {
211 addChars(item.coerceToText(Calculator.this).toString(), false);
212 }
213 return true;
214 }
215
216 @Override
217 public void onMemoryRecall() {
218 clearIfNotInputState();
219 long memoryIndex = mEvaluator.getMemoryIndex();
220 if (memoryIndex != 0) {
221 mEvaluator.appendExpr(mEvaluator.getMemoryIndex());
222 redisplayAfterFormulaChange();
Hans Boehmcc368502016-12-09 10:44:46 -0800223 }
Christine Franks1d99be12016-11-14 14:00:36 -0800224 }
225 };
226
227
Annie Chine918fd22016-03-09 11:07:54 -0800228 private final TextWatcher mFormulaTextWatcher = new TextWatcher() {
229 @Override
230 public void beforeTextChanged(CharSequence charSequence, int start, int count, int after) {
231 }
232
233 @Override
234 public void onTextChanged(CharSequence charSequence, int start, int count, int after) {
235 }
236
237 @Override
238 public void afterTextChanged(Editable editable) {
239 final ViewTreeObserver observer = mFormulaContainer.getViewTreeObserver();
240 if (observer.isAlive()) {
241 observer.removeOnPreDrawListener(mPreDrawListener);
242 observer.addOnPreDrawListener(mPreDrawListener);
243 }
244 }
245 };
246
Justin Klaassen4b3af052014-05-27 17:53:10 -0700247 private CalculatorState mCurrentState;
Hans Boehm84614952014-11-25 18:46:17 -0800248 private Evaluator mEvaluator;
Justin Klaassen4b3af052014-05-27 17:53:10 -0700249
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800250 private CalculatorDisplay mDisplayView;
Justin Klaassend48b7562015-04-16 16:51:38 -0700251 private TextView mModeView;
Christine Franks7452d3a2016-10-27 13:41:18 -0700252 private CalculatorFormula mFormulaText;
Justin Klaassen44595162015-05-28 17:55:20 -0700253 private CalculatorResult mResultText;
Annie Chine918fd22016-03-09 11:07:54 -0800254 private HorizontalScrollView mFormulaContainer;
Annie Chin09547532016-10-14 10:59:07 -0700255 private DragLayout mDragLayout;
Annie Chind0f87d22016-10-24 09:04:12 -0700256 private FrameLayout mHistoryFrame;
Justin Klaassend48b7562015-04-16 16:51:38 -0700257
Justin Klaassen3b4d13d2014-06-06 18:18:37 +0100258 private ViewPager mPadViewPager;
Justin Klaassen4b3af052014-05-27 17:53:10 -0700259 private View mDeleteButton;
260 private View mClearButton;
Justin Klaassend48b7562015-04-16 16:51:38 -0700261 private View mEqualButton;
Annie Chineb36f952016-12-08 17:27:19 -0800262 private View mMainCalculator;
Justin Klaassene2711cb2015-05-28 11:13:17 -0700263
264 private TextView mInverseToggle;
265 private TextView mModeToggle;
266
Justin Klaassen721ec842015-05-28 14:30:08 -0700267 private View[] mInvertibleButtons;
Justin Klaassene2711cb2015-05-28 11:13:17 -0700268 private View[] mInverseButtons;
Justin Klaassen4b3af052014-05-27 17:53:10 -0700269
Justin Klaassen5f2a3342014-06-11 17:40:22 -0700270 private View mCurrentButton;
Justin Klaassen4b3af052014-05-27 17:53:10 -0700271 private Animator mCurrentAnimator;
272
Hans Boehm8a4f81c2015-07-09 10:41:25 -0700273 // Characters that were recently entered at the end of the display that have not yet
274 // been added to the underlying expression.
275 private String mUnprocessedChars = null;
276
277 // Color to highlight unprocessed characters from physical keyboard.
278 // TODO: should probably match this to the error color?
279 private ForegroundColorSpan mUnprocessedColorSpan = new ForegroundColorSpan(Color.RED);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700280
Annie Chin26e159e2016-05-18 15:17:14 -0700281 // Whether the display is one line.
282 private boolean mOneLine;
283
Annie Chin09547532016-10-14 10:59:07 -0700284 private HistoryFragment mHistoryFragment = new HistoryFragment();
285
Hans Boehm31ea2522016-11-23 17:47:02 -0800286 /**
Hans Boehma5ea8eb2016-12-01 12:33:38 -0800287 * Map the old saved state to a new state reflecting requested result reevaluation.
288 */
289 private CalculatorState mapFromSaved(CalculatorState savedState) {
290 switch (savedState) {
291 case RESULT:
292 case INIT_FOR_RESULT:
293 // Evaluation is expected to terminate normally.
294 return CalculatorState.INIT_FOR_RESULT;
295 case ERROR:
296 case INIT:
297 return CalculatorState.INIT;
298 case EVALUATE:
299 case INPUT:
300 return savedState;
301 default: // Includes ANIMATE state.
302 throw new AssertionError("Impossible saved state");
303 }
304 }
305
306 /**
Hans Boehm31ea2522016-11-23 17:47:02 -0800307 * Restore Evaluator state and mCurrentState from savedInstanceState.
308 * Return true if the toolbar should be visible.
309 */
310 private void restoreInstanceState(Bundle savedInstanceState) {
311 final CalculatorState savedState = CalculatorState.values()[
312 savedInstanceState.getInt(KEY_DISPLAY_STATE,
313 CalculatorState.INPUT.ordinal())];
314 setState(savedState);
315 CharSequence unprocessed = savedInstanceState.getCharSequence(KEY_UNPROCESSED_CHARS);
316 if (unprocessed != null) {
317 mUnprocessedChars = unprocessed.toString();
318 }
319 byte[] state = savedInstanceState.getByteArray(KEY_EVAL_STATE);
320 if (state != null) {
321 try (ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(state))) {
322 mEvaluator.restoreInstanceState(in);
323 } catch (Throwable ignored) {
324 // When in doubt, revert to clean state
325 mCurrentState = CalculatorState.INPUT;
326 mEvaluator.clearMain();
327 }
328 }
329 if (savedInstanceState.getBoolean(KEY_SHOW_TOOLBAR, true)) {
330 showAndMaybeHideToolbar();
331 } else {
332 mDisplayView.hideToolbar();
333 }
334 onInverseToggled(savedInstanceState.getBoolean(KEY_INVERSE_MODE));
335 // TODO: We're currently not saving and restoring scroll position.
336 // We probably should. Details may require care to deal with:
337 // - new display size
338 // - slow recomputation if we've scrolled far.
339 }
340
341 private void restoreDisplay() {
342 onModeChanged(mEvaluator.getDegreeMode(Evaluator.MAIN_INDEX));
343 if (mCurrentState != CalculatorState.RESULT
344 && mCurrentState != CalculatorState.INIT_FOR_RESULT) {
345 redisplayFormula();
346 }
347 if (mCurrentState == CalculatorState.INPUT) {
348 // This resultText will explicitly call evaluateAndNotify when ready.
349 mResultText.setShouldEvaluateResult(CalculatorResult.SHOULD_EVALUATE, this);
350 } else {
351 // Just reevaluate.
Hans Boehma5ea8eb2016-12-01 12:33:38 -0800352 setState(mapFromSaved(mCurrentState));
Hans Boehm31ea2522016-11-23 17:47:02 -0800353 // Request evaluation when we know display width.
354 mResultText.setShouldEvaluateResult(CalculatorResult.SHOULD_REQUIRE, this);
355 }
356 }
357
Justin Klaassen4b3af052014-05-27 17:53:10 -0700358 @Override
359 protected void onCreate(Bundle savedInstanceState) {
360 super.onCreate(savedInstanceState);
Hans Boehm31ea2522016-11-23 17:47:02 -0800361
Annie Chin09547532016-10-14 10:59:07 -0700362 setContentView(R.layout.activity_calculator_main);
Justin Klaassend48b7562015-04-16 16:51:38 -0700363 setActionBar((Toolbar) findViewById(R.id.toolbar));
364
365 // Hide all default options in the ActionBar.
366 getActionBar().setDisplayOptions(0);
Justin Klaassen4b3af052014-05-27 17:53:10 -0700367
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800368 // Ensure the toolbar stays visible while the options menu is displayed.
369 getActionBar().addOnMenuVisibilityListener(new ActionBar.OnMenuVisibilityListener() {
370 @Override
371 public void onMenuVisibilityChanged(boolean isVisible) {
372 mDisplayView.setForceToolbarVisible(isVisible);
373 }
374 });
375
Annie Chineb36f952016-12-08 17:27:19 -0800376 mMainCalculator = findViewById(R.id.main_calculator);
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800377 mDisplayView = (CalculatorDisplay) findViewById(R.id.display);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700378 mModeView = (TextView) findViewById(R.id.mode);
Christine Franks7452d3a2016-10-27 13:41:18 -0700379 mFormulaText = (CalculatorFormula) findViewById(R.id.formula);
Justin Klaassen44595162015-05-28 17:55:20 -0700380 mResultText = (CalculatorResult) findViewById(R.id.result);
Annie Chine918fd22016-03-09 11:07:54 -0800381 mFormulaContainer = (HorizontalScrollView) findViewById(R.id.formula_container);
Hans Boehm31ea2522016-11-23 17:47:02 -0800382 mEvaluator = Evaluator.getInstance(this);
Christine Frankscbc51fa2017-01-04 21:00:36 -0800383 mEvaluator.setCallback(mEvaluatorCallback);
Hans Boehm31ea2522016-11-23 17:47:02 -0800384 mResultText.setEvaluator(mEvaluator, Evaluator.MAIN_INDEX);
385 KeyMaps.setActivity(this);
Justin Klaassend48b7562015-04-16 16:51:38 -0700386
Justin Klaassen3b4d13d2014-06-06 18:18:37 +0100387 mPadViewPager = (ViewPager) findViewById(R.id.pad_pager);
Justin Klaassen4b3af052014-05-27 17:53:10 -0700388 mDeleteButton = findViewById(R.id.del);
389 mClearButton = findViewById(R.id.clr);
Christine Franksbd90b792016-11-22 10:28:26 -0800390 final View numberPad = findViewById(R.id.pad_numeric);
391 mEqualButton = numberPad.findViewById(R.id.eq);
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -0700392 if (mEqualButton == null || mEqualButton.getVisibility() != View.VISIBLE) {
393 mEqualButton = findViewById(R.id.pad_operator).findViewById(R.id.eq);
394 }
Christine Franksbd90b792016-11-22 10:28:26 -0800395 final TextView decimalPointButton = (TextView) numberPad.findViewById(R.id.dec_point);
396 decimalPointButton.setText(getDecimalSeparator());
Justin Klaassene2711cb2015-05-28 11:13:17 -0700397
398 mInverseToggle = (TextView) findViewById(R.id.toggle_inv);
399 mModeToggle = (TextView) findViewById(R.id.toggle_mode);
400
Annie Chin26e159e2016-05-18 15:17:14 -0700401 mOneLine = mResultText.getVisibility() == View.INVISIBLE;
402
Justin Klaassen721ec842015-05-28 14:30:08 -0700403 mInvertibleButtons = new View[] {
404 findViewById(R.id.fun_sin),
405 findViewById(R.id.fun_cos),
Hans Boehm4db31b42015-05-31 12:19:05 -0700406 findViewById(R.id.fun_tan),
407 findViewById(R.id.fun_ln),
408 findViewById(R.id.fun_log),
409 findViewById(R.id.op_sqrt)
Justin Klaassene2711cb2015-05-28 11:13:17 -0700410 };
411 mInverseButtons = new View[] {
412 findViewById(R.id.fun_arcsin),
413 findViewById(R.id.fun_arccos),
Hans Boehm4db31b42015-05-31 12:19:05 -0700414 findViewById(R.id.fun_arctan),
415 findViewById(R.id.fun_exp),
416 findViewById(R.id.fun_10pow),
417 findViewById(R.id.op_sqr)
Justin Klaassene2711cb2015-05-28 11:13:17 -0700418 };
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -0700419
Annie Chin09547532016-10-14 10:59:07 -0700420 mDragLayout = (DragLayout) findViewById(R.id.drag_layout);
Annie Chin52eed7a2017-01-04 15:06:05 -0800421 mDragLayout.removeDragCallback(this);
422 mDragLayout.addDragCallback(this);
423 mDragLayout.setCloseCallback(this);
Annie Chin09547532016-10-14 10:59:07 -0700424
Annie Chind0f87d22016-10-24 09:04:12 -0700425 mHistoryFrame = (FrameLayout) findViewById(R.id.history_frame);
Annie Chin09547532016-10-14 10:59:07 -0700426
Christine Franks1d99be12016-11-14 14:00:36 -0800427 mFormulaText.setOnContextMenuClickListener(mOnFormulaContextMenuClickListener);
428 mFormulaText.setOnDisplayMemoryOperationsListener(mOnDisplayMemoryOperationsListener);
429
Hans Boehm08e8f322015-04-21 13:18:38 -0700430 mFormulaText.setOnTextSizeChangeListener(this);
Annie Chine918fd22016-03-09 11:07:54 -0800431 mFormulaText.addTextChangedListener(mFormulaTextWatcher);
Justin Klaassen4b3af052014-05-27 17:53:10 -0700432 mDeleteButton.setOnLongClickListener(this);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700433
Hans Boehm31ea2522016-11-23 17:47:02 -0800434 if (savedInstanceState != null) {
435 restoreInstanceState(savedInstanceState);
Christine Frankseeff27f2016-07-29 12:05:29 -0700436 } else {
Hans Boehm31ea2522016-11-23 17:47:02 -0800437 mCurrentState = CalculatorState.INPUT;
438 mEvaluator.clearMain();
Christine Frankseeff27f2016-07-29 12:05:29 -0700439 showAndMaybeHideToolbar();
Hans Boehm31ea2522016-11-23 17:47:02 -0800440 onInverseToggled(false);
Christine Frankseeff27f2016-07-29 12:05:29 -0700441 }
Hans Boehm31ea2522016-11-23 17:47:02 -0800442 restoreDisplay();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700443 }
444
445 @Override
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800446 protected void onResume() {
447 super.onResume();
Christine Frankseeff27f2016-07-29 12:05:29 -0700448 if (mDisplayView.isToolbarVisible()) {
449 showAndMaybeHideToolbar();
450 }
Annie Chineb36f952016-12-08 17:27:19 -0800451 // If HistoryFragment is showing, hide the main Calculator elements from accessibility.
452 // This is because Talkback does not use visibility as a cue for RelativeLayout elements,
453 // and RelativeLayout is the base class of DragLayout.
454 // If we did not do this, it would be possible to traverse to main Calculator elements from
455 // HistoryFragment.
456 mMainCalculator.setImportantForAccessibility(
457 mDragLayout.isOpen() ? View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
458 : View.IMPORTANT_FOR_ACCESSIBILITY_AUTO);
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800459 }
460
461 @Override
Justin Klaassenf79d6f62014-08-26 12:27:08 -0700462 protected void onSaveInstanceState(@NonNull Bundle outState) {
Hans Boehm40125442016-01-22 10:35:35 -0800463 mEvaluator.cancelAll(true);
Justin Klaassenf79d6f62014-08-26 12:27:08 -0700464 // If there's an animation in progress, cancel it first to ensure our state is up-to-date.
465 if (mCurrentAnimator != null) {
466 mCurrentAnimator.cancel();
467 }
468
Justin Klaassen4b3af052014-05-27 17:53:10 -0700469 super.onSaveInstanceState(outState);
Hans Boehm84614952014-11-25 18:46:17 -0800470 outState.putInt(KEY_DISPLAY_STATE, mCurrentState.ordinal());
Hans Boehm760a9dc2015-04-20 10:27:12 -0700471 outState.putCharSequence(KEY_UNPROCESSED_CHARS, mUnprocessedChars);
Hans Boehm84614952014-11-25 18:46:17 -0800472 ByteArrayOutputStream byteArrayStream = new ByteArrayOutputStream();
473 try (ObjectOutput out = new ObjectOutputStream(byteArrayStream)) {
474 mEvaluator.saveInstanceState(out);
475 } catch (IOException e) {
476 // Impossible; No IO involved.
477 throw new AssertionError("Impossible IO exception", e);
478 }
479 outState.putByteArray(KEY_EVAL_STATE, byteArrayStream.toByteArray());
Justin Klaassen3e223ea2016-02-05 14:18:06 -0800480 outState.putBoolean(KEY_INVERSE_MODE, mInverseToggle.isSelected());
Christine Frankseeff27f2016-07-29 12:05:29 -0700481 outState.putBoolean(KEY_SHOW_TOOLBAR, mDisplayView.isToolbarVisible());
Hans Boehme95203e2017-01-04 14:13:11 -0800482 // We must wait for asynchronous writes to complete, since outState may contain
483 // references to expressions being written.
484 mEvaluator.waitForWrites();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700485 }
486
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700487 // Set the state, updating delete label and display colors.
488 // This restores display positions on moving to INPUT.
Justin Klaassend48b7562015-04-16 16:51:38 -0700489 // But movement/animation for moving to RESULT has already been done.
Justin Klaassen4b3af052014-05-27 17:53:10 -0700490 private void setState(CalculatorState state) {
491 if (mCurrentState != state) {
Hans Boehm84614952014-11-25 18:46:17 -0800492 if (state == CalculatorState.INPUT) {
Hans Boehmd4959e82016-11-15 18:01:28 -0800493 // We'll explicitly request evaluation from now on.
Hans Boehmbd01e4b2016-11-23 10:12:58 -0800494 mResultText.setShouldEvaluateResult(CalculatorResult.SHOULD_NOT_EVALUATE, null);
Hans Boehm84614952014-11-25 18:46:17 -0800495 restoreDisplayPositions();
496 }
Justin Klaassen4b3af052014-05-27 17:53:10 -0700497 mCurrentState = state;
498
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700499 if (mCurrentState == CalculatorState.RESULT) {
500 // No longer do this for ERROR; allow mistakes to be corrected.
Justin Klaassen4b3af052014-05-27 17:53:10 -0700501 mDeleteButton.setVisibility(View.GONE);
502 mClearButton.setVisibility(View.VISIBLE);
503 } else {
504 mDeleteButton.setVisibility(View.VISIBLE);
505 mClearButton.setVisibility(View.GONE);
506 }
507
Annie Chin26e159e2016-05-18 15:17:14 -0700508 if (mOneLine) {
509 if (mCurrentState == CalculatorState.RESULT
510 || mCurrentState == CalculatorState.EVALUATE
511 || mCurrentState == CalculatorState.ANIMATE) {
512 mFormulaText.setVisibility(View.VISIBLE);
513 mResultText.setVisibility(View.VISIBLE);
Annie Chin947d93b2016-06-14 10:18:54 -0700514 } else if (mCurrentState == CalculatorState.ERROR) {
515 mFormulaText.setVisibility(View.INVISIBLE);
516 mResultText.setVisibility(View.VISIBLE);
Annie Chin26e159e2016-05-18 15:17:14 -0700517 } else {
518 mFormulaText.setVisibility(View.VISIBLE);
519 mResultText.setVisibility(View.INVISIBLE);
520 }
521 }
522
Hans Boehm84614952014-11-25 18:46:17 -0800523 if (mCurrentState == CalculatorState.ERROR) {
Chenjie Yu3937b652016-06-01 23:14:26 -0700524 final int errorColor =
525 ContextCompat.getColor(this, R.color.calculator_error_color);
Hans Boehm08e8f322015-04-21 13:18:38 -0700526 mFormulaText.setTextColor(errorColor);
Justin Klaassen44595162015-05-28 17:55:20 -0700527 mResultText.setTextColor(errorColor);
Justin Klaassen8fff1442014-06-19 10:43:29 -0700528 getWindow().setStatusBarColor(errorColor);
Justin Klaassen44595162015-05-28 17:55:20 -0700529 } else if (mCurrentState != CalculatorState.RESULT) {
Chenjie Yu3937b652016-06-01 23:14:26 -0700530 mFormulaText.setTextColor(
531 ContextCompat.getColor(this, R.color.display_formula_text_color));
532 mResultText.setTextColor(
533 ContextCompat.getColor(this, R.color.display_result_text_color));
534 getWindow().setStatusBarColor(
Annie Chin96be2462016-12-19 14:31:16 -0800535 ContextCompat.getColor(this, R.color.calculator_statusbar_color));
Justin Klaassen4b3af052014-05-27 17:53:10 -0700536 }
Justin Klaassend48b7562015-04-16 16:51:38 -0700537
538 invalidateOptionsMenu();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700539 }
540 }
541
Annie Chin94c1bd92016-11-23 13:39:56 -0800542 public boolean isResultLayout() {
Hans Boehm31ea2522016-11-23 17:47:02 -0800543 if (mCurrentState == CalculatorState.ANIMATE) {
544 throw new AssertionError("impossible state");
545 }
546 // Note that ERROR has INPUT, not RESULT layout.
547 return mCurrentState == CalculatorState.INIT_FOR_RESULT
548 || mCurrentState == CalculatorState.RESULT;
Annie Chin70ac8ea2016-11-18 14:43:56 -0800549 }
550
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700551 @Override
Annie Chind0f87d22016-10-24 09:04:12 -0700552 protected void onDestroy() {
Annie Chin52eed7a2017-01-04 15:06:05 -0800553 mDragLayout.removeDragCallback(this);
Annie Chind0f87d22016-10-24 09:04:12 -0700554 super.onDestroy();
555 }
556
Hans Boehma5ea8eb2016-12-01 12:33:38 -0800557 /**
558 * Destroy the evaluator and close the underlying database.
559 */
560 public void destroyEvaluator() {
561 mEvaluator.destroyEvaluator();
562 }
563
Annie Chind0f87d22016-10-24 09:04:12 -0700564 @Override
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700565 public void onActionModeStarted(ActionMode mode) {
566 super.onActionModeStarted(mode);
Christine Franks7452d3a2016-10-27 13:41:18 -0700567 if (mode.getTag() == CalculatorFormula.TAG_ACTION_MODE) {
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700568 mFormulaContainer.scrollTo(mFormulaText.getRight(), 0);
569 }
570 }
571
Chenjie Yu3937b652016-06-01 23:14:26 -0700572 /**
573 * Stop any active ActionMode or ContextMenu for copy/paste actions.
574 * Return true if there was one.
575 */
576 private boolean stopActionModeOrContextMenu() {
Christine Franks7485df52016-12-01 13:18:45 -0800577 return mResultText.stopActionModeOrContextMenu()
578 || mFormulaText.stopActionModeOrContextMenu();
Hans Boehm1176f232015-05-11 16:26:03 -0700579 }
580
Justin Klaassen4b3af052014-05-27 17:53:10 -0700581 @Override
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700582 public void onUserInteraction() {
583 super.onUserInteraction();
584
585 // If there's an animation in progress, end it immediately, so the user interaction can
586 // be handled.
587 if (mCurrentAnimator != null) {
588 mCurrentAnimator.end();
589 }
590 }
591
592 @Override
Christine Franks1473ddd2016-12-01 15:02:23 -0800593 public boolean dispatchTouchEvent(MotionEvent e) {
594 if (e.getActionMasked() == MotionEvent.ACTION_DOWN) {
595 stopActionModeOrContextMenu();
596 if (mDragLayout.isOpen()) {
597 mHistoryFragment.stopActionModeOrContextMenu();
598 }
599 }
600 return super.dispatchTouchEvent(e);
601 }
602
603 @Override
Justin Klaassen3b4d13d2014-06-06 18:18:37 +0100604 public void onBackPressed() {
Chenjie Yu3937b652016-06-01 23:14:26 -0700605 if (!stopActionModeOrContextMenu()) {
Annie Chin09547532016-10-14 10:59:07 -0700606 if (mDragLayout.isOpen()) {
Christine Franks7485df52016-12-01 13:18:45 -0800607 if (!mHistoryFragment.stopActionModeOrContextMenu()) {
608 mDragLayout.setClosed();
Justin Klaassen12874e32016-12-12 07:57:47 -0800609 removeHistoryFragment();
Christine Franks7485df52016-12-01 13:18:45 -0800610 }
Annie Chin09547532016-10-14 10:59:07 -0700611 return;
612 }
Hans Boehm1176f232015-05-11 16:26:03 -0700613 if (mPadViewPager != null && mPadViewPager.getCurrentItem() != 0) {
614 // Select the previous pad.
615 mPadViewPager.setCurrentItem(mPadViewPager.getCurrentItem() - 1);
616 } else {
617 // If the user is currently looking at the first pad (or the pad is not paged),
618 // allow the system to handle the Back button.
619 super.onBackPressed();
620 }
Justin Klaassen3b4d13d2014-06-06 18:18:37 +0100621 }
622 }
623
624 @Override
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700625 public boolean onKeyUp(int keyCode, KeyEvent event) {
Justin Klaassen83959da2016-04-06 11:55:24 -0700626 // Allow the system to handle special key codes (e.g. "BACK" or "DPAD").
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700627 switch (keyCode) {
Justin Klaassen83959da2016-04-06 11:55:24 -0700628 case KeyEvent.KEYCODE_BACK:
Christine Franksf9ba2202016-10-20 17:20:19 -0700629 case KeyEvent.KEYCODE_ESCAPE:
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700630 case KeyEvent.KEYCODE_DPAD_UP:
631 case KeyEvent.KEYCODE_DPAD_DOWN:
632 case KeyEvent.KEYCODE_DPAD_LEFT:
633 case KeyEvent.KEYCODE_DPAD_RIGHT:
634 return super.onKeyUp(keyCode, event);
635 }
636
Chenjie Yu3937b652016-06-01 23:14:26 -0700637 // Stop the action mode or context menu if it's showing.
638 stopActionModeOrContextMenu();
Justin Klaassend12e0622016-04-27 16:26:47 -0700639
Hans Boehmced295e2016-11-17 17:30:13 -0800640 // Always cancel unrequested in-progress evaluation of the main expression, so that
641 // we don't have to worry about subsequent asynchronous completion.
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700642 // Requested in-progress evaluations are handled below.
Hans Boehm31ea2522016-11-23 17:47:02 -0800643 cancelUnrequested();
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700644
645 switch (keyCode) {
646 case KeyEvent.KEYCODE_NUMPAD_ENTER:
647 case KeyEvent.KEYCODE_ENTER:
648 case KeyEvent.KEYCODE_DPAD_CENTER:
649 mCurrentButton = mEqualButton;
650 onEquals();
651 return true;
652 case KeyEvent.KEYCODE_DEL:
653 mCurrentButton = mDeleteButton;
654 onDelete();
655 return true;
Annie Chin56bcbf12016-09-23 17:04:22 -0700656 case KeyEvent.KEYCODE_CLEAR:
657 mCurrentButton = mClearButton;
658 onClear();
659 return true;
Justin Klaassen12da1ad2016-04-04 14:20:37 -0700660 default:
661 cancelIfEvaluating(false);
662 final int raw = event.getKeyCharacterMap().get(keyCode, event.getMetaState());
663 if ((raw & KeyCharacterMap.COMBINING_ACCENT) != 0) {
664 return true; // discard
665 }
666 // Try to discard non-printing characters and the like.
667 // The user will have to explicitly delete other junk that gets past us.
668 if (Character.isIdentifierIgnorable(raw) || Character.isWhitespace(raw)) {
669 return true;
670 }
671 char c = (char) raw;
672 if (c == '=') {
673 mCurrentButton = mEqualButton;
674 onEquals();
675 } else {
676 addChars(String.valueOf(c), true);
677 redisplayAfterFormulaChange();
678 }
679 return true;
Justin Klaassen4b3af052014-05-27 17:53:10 -0700680 }
681 }
682
Justin Klaassene2711cb2015-05-28 11:13:17 -0700683 /**
684 * Invoked whenever the inverse button is toggled to update the UI.
685 *
686 * @param showInverse {@code true} if inverse functions should be shown
687 */
688 private void onInverseToggled(boolean showInverse) {
Justin Klaassen3e223ea2016-02-05 14:18:06 -0800689 mInverseToggle.setSelected(showInverse);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700690 if (showInverse) {
691 mInverseToggle.setContentDescription(getString(R.string.desc_inv_on));
Justin Klaassen721ec842015-05-28 14:30:08 -0700692 for (View invertibleButton : mInvertibleButtons) {
693 invertibleButton.setVisibility(View.GONE);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700694 }
695 for (View inverseButton : mInverseButtons) {
696 inverseButton.setVisibility(View.VISIBLE);
697 }
698 } else {
699 mInverseToggle.setContentDescription(getString(R.string.desc_inv_off));
Justin Klaassen721ec842015-05-28 14:30:08 -0700700 for (View invertibleButton : mInvertibleButtons) {
701 invertibleButton.setVisibility(View.VISIBLE);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700702 }
703 for (View inverseButton : mInverseButtons) {
704 inverseButton.setVisibility(View.GONE);
705 }
706 }
707 }
708
709 /**
Christine Frankseeff27f2016-07-29 12:05:29 -0700710 * Invoked whenever the deg/rad mode may have changed to update the UI. Note that the mode has
711 * not necessarily actually changed where this is invoked.
Justin Klaassene2711cb2015-05-28 11:13:17 -0700712 *
713 * @param degreeMode {@code true} if in degree mode
714 */
715 private void onModeChanged(boolean degreeMode) {
716 if (degreeMode) {
Justin Klaassend48b7562015-04-16 16:51:38 -0700717 mModeView.setText(R.string.mode_deg);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700718 mModeView.setContentDescription(getString(R.string.desc_mode_deg));
719
720 mModeToggle.setText(R.string.mode_rad);
721 mModeToggle.setContentDescription(getString(R.string.desc_switch_rad));
Hans Boehmbfe8c222015-04-02 16:26:07 -0700722 } else {
Justin Klaassend48b7562015-04-16 16:51:38 -0700723 mModeView.setText(R.string.mode_rad);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700724 mModeView.setContentDescription(getString(R.string.desc_mode_rad));
725
726 mModeToggle.setText(R.string.mode_deg);
727 mModeToggle.setContentDescription(getString(R.string.desc_switch_deg));
Hans Boehmbfe8c222015-04-02 16:26:07 -0700728 }
729 }
Hans Boehm84614952014-11-25 18:46:17 -0800730
Justin Klaassen12874e32016-12-12 07:57:47 -0800731 private void removeHistoryFragment() {
Annie Chin06fd3cf2016-11-07 16:04:33 -0800732 final FragmentManager manager = getFragmentManager();
Annie Chineb36f952016-12-08 17:27:19 -0800733 if (manager != null && !manager.isDestroyed()) {
734 manager.popBackStackImmediate(HistoryFragment.TAG,
735 FragmentManager.POP_BACK_STACK_INCLUSIVE);
Annie Chin06fd3cf2016-11-07 16:04:33 -0800736 }
Annie Chineb36f952016-12-08 17:27:19 -0800737
738 // When HistoryFragment is hidden, the main Calculator is important for accessibility again.
739 mMainCalculator.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_AUTO);
Annie Chin06fd3cf2016-11-07 16:04:33 -0800740 }
Annie Chin9a211132016-11-30 12:52:06 -0800741
Hans Boehm5d79d102015-09-16 16:33:47 -0700742 /**
743 * Switch to INPUT from RESULT state in response to input of the specified button_id.
744 * View.NO_ID is treated as an incomplete function id.
745 */
746 private void switchToInput(int button_id) {
747 if (KeyMaps.isBinary(button_id) || KeyMaps.isSuffix(button_id)) {
Hans Boehm8f051c32016-10-03 16:53:58 -0700748 mEvaluator.collapse(mEvaluator.getMaxIndex() /* Most recent history entry */);
Hans Boehm5d79d102015-09-16 16:33:47 -0700749 } else {
750 announceClearedForAccessibility();
Hans Boehm8f051c32016-10-03 16:53:58 -0700751 mEvaluator.clearMain();
Hans Boehm5d79d102015-09-16 16:33:47 -0700752 }
753 setState(CalculatorState.INPUT);
754 }
755
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700756 // Add the given button id to input expression.
757 // If appropriate, clear the expression before doing so.
758 private void addKeyToExpr(int id) {
759 if (mCurrentState == CalculatorState.ERROR) {
760 setState(CalculatorState.INPUT);
761 } else if (mCurrentState == CalculatorState.RESULT) {
Hans Boehm5d79d102015-09-16 16:33:47 -0700762 switchToInput(id);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700763 }
764 if (!mEvaluator.append(id)) {
765 // TODO: Some user visible feedback?
766 }
767 }
768
Hans Boehm017de982015-06-10 17:46:03 -0700769 /**
770 * Add the given button id to input expression, assuming it was explicitly
771 * typed/touched.
772 * We perform slightly more aggressive correction than in pasted expressions.
773 */
774 private void addExplicitKeyToExpr(int id) {
775 if (mCurrentState == CalculatorState.INPUT && id == R.id.op_sub) {
Hans Boehm8f051c32016-10-03 16:53:58 -0700776 mEvaluator.getExpr(Evaluator.MAIN_INDEX).removeTrailingAdditiveOperators();
Hans Boehm017de982015-06-10 17:46:03 -0700777 }
778 addKeyToExpr(id);
779 }
780
Hans Boehmbd01e4b2016-11-23 10:12:58 -0800781 public void evaluateInstantIfNecessary() {
782 if (mCurrentState == CalculatorState.INPUT
783 && mEvaluator.getExpr(Evaluator.MAIN_INDEX).hasInterestingOps()) {
784 mEvaluator.evaluateAndNotify(Evaluator.MAIN_INDEX, this, mResultText);
785 }
786 }
787
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700788 private void redisplayAfterFormulaChange() {
789 // TODO: Could do this more incrementally.
790 redisplayFormula();
791 setState(CalculatorState.INPUT);
Hans Boehm8f051c32016-10-03 16:53:58 -0700792 mResultText.clear();
Hans Boehmaf04c3a2016-01-27 14:50:08 -0800793 if (haveUnprocessed()) {
Hans Boehmaf04c3a2016-01-27 14:50:08 -0800794 // Force reevaluation when text is deleted, even if expression is unchanged.
795 mEvaluator.touch();
796 } else {
Hans Boehmbd01e4b2016-11-23 10:12:58 -0800797 evaluateInstantIfNecessary();
Hans Boehmc023b732015-04-29 11:30:47 -0700798 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700799 }
800
Hans Boehm52d477a2016-04-01 17:42:50 -0700801 /**
802 * Show the toolbar.
803 * Automatically hide it again if it's not relevant to current formula.
804 */
805 private void showAndMaybeHideToolbar() {
806 final boolean shouldBeVisible =
807 mCurrentState == CalculatorState.INPUT && mEvaluator.hasTrigFuncs();
808 mDisplayView.showToolbar(!shouldBeVisible);
809 }
810
811 /**
812 * Display or hide the toolbar depending on calculator state.
813 */
814 private void showOrHideToolbar() {
815 final boolean shouldBeVisible =
816 mCurrentState == CalculatorState.INPUT && mEvaluator.hasTrigFuncs();
817 if (shouldBeVisible) {
818 mDisplayView.showToolbar(false);
819 } else {
820 mDisplayView.hideToolbar();
821 }
822 }
823
Justin Klaassen4b3af052014-05-27 17:53:10 -0700824 public void onButtonClick(View view) {
Hans Boehmc1ea0912015-06-19 15:05:07 -0700825 // Any animation is ended before we get here.
Justin Klaassen5f2a3342014-06-11 17:40:22 -0700826 mCurrentButton = view;
Chenjie Yu3937b652016-06-01 23:14:26 -0700827 stopActionModeOrContextMenu();
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800828
Hans Boehmc1ea0912015-06-19 15:05:07 -0700829 // See onKey above for the rationale behind some of the behavior below:
Hans Boehm31ea2522016-11-23 17:47:02 -0800830 cancelUnrequested();
Justin Klaassen9d33cdc2016-02-21 14:16:14 -0800831
Justin Klaassend48b7562015-04-16 16:51:38 -0700832 final int id = view.getId();
Hans Boehm84614952014-11-25 18:46:17 -0800833 switch (id) {
Justin Klaassen4b3af052014-05-27 17:53:10 -0700834 case R.id.eq:
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -0700835 onEquals();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700836 break;
837 case R.id.del:
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -0700838 onDelete();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700839 break;
840 case R.id.clr:
Justin Klaassen5f2a3342014-06-11 17:40:22 -0700841 onClear();
Hans Boehm52d477a2016-04-01 17:42:50 -0700842 return; // Toolbar visibility adjusted at end of animation.
Justin Klaassene2711cb2015-05-28 11:13:17 -0700843 case R.id.toggle_inv:
844 final boolean selected = !mInverseToggle.isSelected();
845 mInverseToggle.setSelected(selected);
846 onInverseToggled(selected);
Hans Boehmc1ea0912015-06-19 15:05:07 -0700847 if (mCurrentState == CalculatorState.RESULT) {
848 mResultText.redisplay(); // In case we cancelled reevaluation.
849 }
Justin Klaassene2711cb2015-05-28 11:13:17 -0700850 break;
851 case R.id.toggle_mode:
Hans Boehmc1ea0912015-06-19 15:05:07 -0700852 cancelIfEvaluating(false);
Hans Boehm8f051c32016-10-03 16:53:58 -0700853 final boolean mode = !mEvaluator.getDegreeMode(Evaluator.MAIN_INDEX);
854 if (mCurrentState == CalculatorState.RESULT
855 && mEvaluator.getExpr(Evaluator.MAIN_INDEX).hasTrigFuncs()) {
856 // Capture current result evaluated in old mode.
857 mEvaluator.collapse(mEvaluator.getMaxIndex());
Hans Boehmbfe8c222015-04-02 16:26:07 -0700858 redisplayFormula();
859 }
860 // In input mode, we reinterpret already entered trig functions.
861 mEvaluator.setDegreeMode(mode);
Justin Klaassene2711cb2015-05-28 11:13:17 -0700862 onModeChanged(mode);
Christine Frankseeff27f2016-07-29 12:05:29 -0700863 // Show the toolbar to highlight the mode change.
864 showAndMaybeHideToolbar();
Hans Boehmbfe8c222015-04-02 16:26:07 -0700865 setState(CalculatorState.INPUT);
Justin Klaassen44595162015-05-28 17:55:20 -0700866 mResultText.clear();
Hans Boehmbd01e4b2016-11-23 10:12:58 -0800867 if (!haveUnprocessed()) {
868 evaluateInstantIfNecessary();
Hans Boehmc023b732015-04-29 11:30:47 -0700869 }
Christine Frankseeff27f2016-07-29 12:05:29 -0700870 return;
Justin Klaassen4b3af052014-05-27 17:53:10 -0700871 default:
Hans Boehmc1ea0912015-06-19 15:05:07 -0700872 cancelIfEvaluating(false);
Hans Boehmaf04c3a2016-01-27 14:50:08 -0800873 if (haveUnprocessed()) {
874 // For consistency, append as uninterpreted characters.
875 // This may actually be useful for a left parenthesis.
876 addChars(KeyMaps.toString(this, id), true);
877 } else {
878 addExplicitKeyToExpr(id);
879 redisplayAfterFormulaChange();
880 }
Justin Klaassen4b3af052014-05-27 17:53:10 -0700881 break;
882 }
Hans Boehm52d477a2016-04-01 17:42:50 -0700883 showOrHideToolbar();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700884 }
885
Hans Boehm84614952014-11-25 18:46:17 -0800886 void redisplayFormula() {
Hans Boehm8f051c32016-10-03 16:53:58 -0700887 SpannableStringBuilder formula
888 = mEvaluator.getExpr(Evaluator.MAIN_INDEX).toSpannableStringBuilder(this);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700889 if (mUnprocessedChars != null) {
890 // Add and highlight characters we couldn't process.
Hans Boehm8a4f81c2015-07-09 10:41:25 -0700891 formula.append(mUnprocessedChars, mUnprocessedColorSpan,
892 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700893 }
Hans Boehm8a4f81c2015-07-09 10:41:25 -0700894 mFormulaText.changeTextTo(formula);
Annie Chinf360ef02016-03-10 13:45:39 -0800895 mFormulaText.setContentDescription(TextUtils.isEmpty(formula)
Justin Klaassend1831412016-07-19 21:59:10 -0700896 ? getString(R.string.desc_formula) : null);
Hans Boehm84614952014-11-25 18:46:17 -0800897 }
898
Justin Klaassen4b3af052014-05-27 17:53:10 -0700899 @Override
900 public boolean onLongClick(View view) {
Justin Klaassen5f2a3342014-06-11 17:40:22 -0700901 mCurrentButton = view;
902
Justin Klaassen4b3af052014-05-27 17:53:10 -0700903 if (view.getId() == R.id.del) {
Justin Klaassen5f2a3342014-06-11 17:40:22 -0700904 onClear();
Justin Klaassen4b3af052014-05-27 17:53:10 -0700905 return true;
906 }
907 return false;
908 }
909
Hans Boehm84614952014-11-25 18:46:17 -0800910 // Initial evaluation completed successfully. Initiate display.
Hans Boehm8f051c32016-10-03 16:53:58 -0700911 public void onEvaluate(long index, int initDisplayPrec, int msd, int leastDigPos,
Hans Boehma0e45f32015-05-30 13:20:35 -0700912 String truncatedWholeNumber) {
Hans Boehm8f051c32016-10-03 16:53:58 -0700913 if (index != Evaluator.MAIN_INDEX) {
914 throw new AssertionError("Unexpected evaluation result index\n");
915 }
Annie Chin37c33b62016-11-22 14:46:28 -0800916
Justin Klaassend48b7562015-04-16 16:51:38 -0700917 // Invalidate any options that may depend on the current result.
918 invalidateOptionsMenu();
919
Hans Boehm8f051c32016-10-03 16:53:58 -0700920 mResultText.onEvaluate(index, initDisplayPrec, msd, leastDigPos, truncatedWholeNumber);
Hans Boehm31ea2522016-11-23 17:47:02 -0800921 if (mCurrentState != CalculatorState.INPUT) {
922 // In EVALUATE, INIT, or INIT_FOR_RESULT state.
Hans Boehm45223152016-12-21 10:35:35 -0800923 onResult(mCurrentState == CalculatorState.EVALUATE /* animate */,
924 mCurrentState == CalculatorState.INIT_FOR_RESULT /* previously preserved */);
Justin Klaassen4b3af052014-05-27 17:53:10 -0700925 }
Hans Boehm84614952014-11-25 18:46:17 -0800926 }
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -0700927
Hans Boehmc1ea0912015-06-19 15:05:07 -0700928 // Reset state to reflect evaluator cancellation. Invoked by evaluator.
Hans Boehm8f051c32016-10-03 16:53:58 -0700929 public void onCancelled(long index) {
930 // Index is Evaluator.MAIN_INDEX. We should be in EVALUATE state.
Hans Boehm84614952014-11-25 18:46:17 -0800931 setState(CalculatorState.INPUT);
Hans Boehm8f051c32016-10-03 16:53:58 -0700932 mResultText.onCancelled(index);
Hans Boehm84614952014-11-25 18:46:17 -0800933 }
934
935 // Reevaluation completed; ask result to redisplay current value.
Christine Frankscbc51fa2017-01-04 21:00:36 -0800936 public void onReevaluate(long index) {
Hans Boehm8f051c32016-10-03 16:53:58 -0700937 // Index is Evaluator.MAIN_INDEX.
938 mResultText.onReevaluate(index);
Justin Klaassen4b3af052014-05-27 17:53:10 -0700939 }
940
Justin Klaassenfed941a2014-06-09 18:42:40 +0100941 @Override
942 public void onTextSizeChanged(final TextView textView, float oldSize) {
943 if (mCurrentState != CalculatorState.INPUT) {
944 // Only animate text changes that occur from user input.
945 return;
946 }
947
948 // Calculate the values needed to perform the scale and translation animations,
949 // maintaining the same apparent baseline for the displayed text.
950 final float textScale = oldSize / textView.getTextSize();
951 final float translationX = (1.0f - textScale) *
952 (textView.getWidth() / 2.0f - textView.getPaddingEnd());
953 final float translationY = (1.0f - textScale) *
954 (textView.getHeight() / 2.0f - textView.getPaddingBottom());
955
956 final AnimatorSet animatorSet = new AnimatorSet();
957 animatorSet.playTogether(
958 ObjectAnimator.ofFloat(textView, View.SCALE_X, textScale, 1.0f),
959 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f),
960 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f),
961 ObjectAnimator.ofFloat(textView, View.TRANSLATION_Y, translationY, 0.0f));
Justin Klaassen94db7202014-06-11 11:22:31 -0700962 animatorSet.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime));
Justin Klaassenfed941a2014-06-09 18:42:40 +0100963 animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
964 animatorSet.start();
965 }
966
Hans Boehmc1ea0912015-06-19 15:05:07 -0700967 /**
968 * Cancel any in-progress explicitly requested evaluations.
969 * @param quiet suppress pop-up message. Explicit evaluation can change the expression
970 value, and certainly changes the display, so it seems reasonable to warn.
971 * @return true if there was such an evaluation
972 */
973 private boolean cancelIfEvaluating(boolean quiet) {
974 if (mCurrentState == CalculatorState.EVALUATE) {
Hans Boehm31ea2522016-11-23 17:47:02 -0800975 mEvaluator.cancel(Evaluator.MAIN_INDEX, quiet);
Hans Boehmc1ea0912015-06-19 15:05:07 -0700976 return true;
977 } else {
978 return false;
979 }
980 }
981
Hans Boehm31ea2522016-11-23 17:47:02 -0800982
983 private void cancelUnrequested() {
984 if (mCurrentState == CalculatorState.INPUT) {
985 mEvaluator.cancel(Evaluator.MAIN_INDEX, true);
986 }
987 }
988
Hans Boehmaf04c3a2016-01-27 14:50:08 -0800989 private boolean haveUnprocessed() {
990 return mUnprocessedChars != null && !mUnprocessedChars.isEmpty();
991 }
992
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -0700993 private void onEquals() {
Hans Boehm56d6e762016-06-06 11:46:29 -0700994 // Ignore if in non-INPUT state, or if there are no operators.
Justin Klaassena8075af2016-07-27 15:24:45 -0700995 if (mCurrentState == CalculatorState.INPUT) {
Hans Boehmaf04c3a2016-01-27 14:50:08 -0800996 if (haveUnprocessed()) {
Justin Klaassena8075af2016-07-27 15:24:45 -0700997 setState(CalculatorState.EVALUATE);
Hans Boehm8f051c32016-10-03 16:53:58 -0700998 onError(Evaluator.MAIN_INDEX, R.string.error_syntax);
999 } else if (mEvaluator.getExpr(Evaluator.MAIN_INDEX).hasInterestingOps()) {
Justin Klaassena8075af2016-07-27 15:24:45 -07001000 setState(CalculatorState.EVALUATE);
Hans Boehm8f051c32016-10-03 16:53:58 -07001001 mEvaluator.requireResult(Evaluator.MAIN_INDEX, this, mResultText);
Hans Boehmaf04c3a2016-01-27 14:50:08 -08001002 }
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -07001003 }
1004 }
1005
1006 private void onDelete() {
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001007 // Delete works like backspace; remove the last character or operator from the expression.
1008 // Note that we handle keyboard delete exactly like the delete button. For
1009 // example the delete button can be used to delete a character from an incomplete
1010 // function name typed on a physical keyboard.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001011 // This should be impossible in RESULT state.
Hans Boehmc1ea0912015-06-19 15:05:07 -07001012 // If there is an in-progress explicit evaluation, just cancel it and return.
1013 if (cancelIfEvaluating(false)) return;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001014 setState(CalculatorState.INPUT);
Hans Boehmaf04c3a2016-01-27 14:50:08 -08001015 if (haveUnprocessed()) {
1016 mUnprocessedChars = mUnprocessedChars.substring(0, mUnprocessedChars.length() - 1);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001017 } else {
Hans Boehmc023b732015-04-29 11:30:47 -07001018 mEvaluator.delete();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001019 }
Hans Boehm8f051c32016-10-03 16:53:58 -07001020 if (mEvaluator.getExpr(Evaluator.MAIN_INDEX).isEmpty() && !haveUnprocessed()) {
Hans Boehmdb6f9992015-08-19 12:32:56 -07001021 // Resulting formula won't be announced, since it's empty.
1022 announceClearedForAccessibility();
1023 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001024 redisplayAfterFormulaChange();
Budi Kusmiantoroad8e88a2014-08-11 17:21:09 -07001025 }
1026
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001027 private void reveal(View sourceView, int colorRes, AnimatorListener listener) {
Justin Klaassen06360f92014-08-28 11:08:44 -07001028 final ViewGroupOverlay groupOverlay =
1029 (ViewGroupOverlay) getWindow().getDecorView().getOverlay();
Justin Klaassen8fff1442014-06-19 10:43:29 -07001030
1031 final Rect displayRect = new Rect();
Justin Klaassen06360f92014-08-28 11:08:44 -07001032 mDisplayView.getGlobalVisibleRect(displayRect);
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001033
1034 // Make reveal cover the display and status bar.
1035 final View revealView = new View(this);
Justin Klaassen8fff1442014-06-19 10:43:29 -07001036 revealView.setBottom(displayRect.bottom);
1037 revealView.setLeft(displayRect.left);
1038 revealView.setRight(displayRect.right);
Chenjie Yu3937b652016-06-01 23:14:26 -07001039 revealView.setBackgroundColor(ContextCompat.getColor(this, colorRes));
Justin Klaassen06360f92014-08-28 11:08:44 -07001040 groupOverlay.add(revealView);
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001041
Justin Klaassen4b3af052014-05-27 17:53:10 -07001042 final int[] clearLocation = new int[2];
1043 sourceView.getLocationInWindow(clearLocation);
1044 clearLocation[0] += sourceView.getWidth() / 2;
1045 clearLocation[1] += sourceView.getHeight() / 2;
1046
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001047 final int revealCenterX = clearLocation[0] - revealView.getLeft();
1048 final int revealCenterY = clearLocation[1] - revealView.getTop();
Justin Klaassen4b3af052014-05-27 17:53:10 -07001049
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001050 final double x1_2 = Math.pow(revealView.getLeft() - revealCenterX, 2);
1051 final double x2_2 = Math.pow(revealView.getRight() - revealCenterX, 2);
1052 final double y_2 = Math.pow(revealView.getTop() - revealCenterY, 2);
Justin Klaassen4b3af052014-05-27 17:53:10 -07001053 final float revealRadius = (float) Math.max(Math.sqrt(x1_2 + y_2), Math.sqrt(x2_2 + y_2));
1054
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001055 final Animator revealAnimator =
1056 ViewAnimationUtils.createCircularReveal(revealView,
ztenghui3d6ecaf2014-06-05 09:56:00 -07001057 revealCenterX, revealCenterY, 0.0f, revealRadius);
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001058 revealAnimator.setDuration(
Justin Klaassen4b3af052014-05-27 17:53:10 -07001059 getResources().getInteger(android.R.integer.config_longAnimTime));
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001060 revealAnimator.addListener(listener);
Justin Klaassen4b3af052014-05-27 17:53:10 -07001061
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001062 final Animator alphaAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f);
Justin Klaassen4b3af052014-05-27 17:53:10 -07001063 alphaAnimator.setDuration(
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001064 getResources().getInteger(android.R.integer.config_mediumAnimTime));
Justin Klaassen4b3af052014-05-27 17:53:10 -07001065
1066 final AnimatorSet animatorSet = new AnimatorSet();
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001067 animatorSet.play(revealAnimator).before(alphaAnimator);
Justin Klaassen4b3af052014-05-27 17:53:10 -07001068 animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
1069 animatorSet.addListener(new AnimatorListenerAdapter() {
1070 @Override
Justin Klaassen4b3af052014-05-27 17:53:10 -07001071 public void onAnimationEnd(Animator animator) {
Justin Klaassen8fff1442014-06-19 10:43:29 -07001072 groupOverlay.remove(revealView);
Justin Klaassen4b3af052014-05-27 17:53:10 -07001073 mCurrentAnimator = null;
1074 }
1075 });
1076
1077 mCurrentAnimator = animatorSet;
1078 animatorSet.start();
1079 }
1080
Hans Boehmdb6f9992015-08-19 12:32:56 -07001081 private void announceClearedForAccessibility() {
1082 mResultText.announceForAccessibility(getResources().getString(R.string.cleared));
Hans Boehmccc55662015-07-07 14:16:59 -07001083 }
1084
Hans Boehm9db3ee22016-11-18 10:09:47 -08001085 public void onClearAnimationEnd() {
1086 mUnprocessedChars = null;
1087 mResultText.clear();
1088 mEvaluator.clearMain();
1089 setState(CalculatorState.INPUT);
1090 redisplayFormula();
1091 }
1092
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001093 private void onClear() {
Hans Boehm8f051c32016-10-03 16:53:58 -07001094 if (mEvaluator.getExpr(Evaluator.MAIN_INDEX).isEmpty() && !haveUnprocessed()) {
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001095 return;
1096 }
Hans Boehmc1ea0912015-06-19 15:05:07 -07001097 cancelIfEvaluating(true);
Hans Boehmdb6f9992015-08-19 12:32:56 -07001098 announceClearedForAccessibility();
Annie Chin96be2462016-12-19 14:31:16 -08001099 reveal(mCurrentButton, R.color.calculator_primary_color, new AnimatorListenerAdapter() {
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001100 @Override
1101 public void onAnimationEnd(Animator animation) {
Hans Boehm9db3ee22016-11-18 10:09:47 -08001102 onClearAnimationEnd();
Hans Boehm52d477a2016-04-01 17:42:50 -07001103 showOrHideToolbar();
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001104 }
1105 });
1106 }
1107
Hans Boehm84614952014-11-25 18:46:17 -08001108 // Evaluation encountered en error. Display the error.
Hans Boehm8f051c32016-10-03 16:53:58 -07001109 @Override
1110 public void onError(final long index, final int errorResourceId) {
1111 if (index != Evaluator.MAIN_INDEX) {
1112 throw new AssertionError("Unexpected error source");
1113 }
Hans Boehmfbcef702015-04-27 18:07:47 -07001114 if (mCurrentState == CalculatorState.EVALUATE) {
1115 setState(CalculatorState.ANIMATE);
Hans Boehmccc55662015-07-07 14:16:59 -07001116 mResultText.announceForAccessibility(getResources().getString(errorResourceId));
Hans Boehmfbcef702015-04-27 18:07:47 -07001117 reveal(mCurrentButton, R.color.calculator_error_color,
1118 new AnimatorListenerAdapter() {
1119 @Override
1120 public void onAnimationEnd(Animator animation) {
1121 setState(CalculatorState.ERROR);
Hans Boehm8f051c32016-10-03 16:53:58 -07001122 mResultText.onError(index, errorResourceId);
Hans Boehmfbcef702015-04-27 18:07:47 -07001123 }
1124 });
Hans Boehm31ea2522016-11-23 17:47:02 -08001125 } else if (mCurrentState == CalculatorState.INIT
1126 || mCurrentState == CalculatorState.INIT_FOR_RESULT /* very unlikely */) {
Hans Boehmfbcef702015-04-27 18:07:47 -07001127 setState(CalculatorState.ERROR);
Hans Boehm8f051c32016-10-03 16:53:58 -07001128 mResultText.onError(index, errorResourceId);
Hans Boehmc023b732015-04-29 11:30:47 -07001129 } else {
Justin Klaassen44595162015-05-28 17:55:20 -07001130 mResultText.clear();
Justin Klaassen2be4fdb2014-08-06 19:54:09 -07001131 }
Justin Klaassen5f2a3342014-06-11 17:40:22 -07001132 }
1133
Hans Boehm84614952014-11-25 18:46:17 -08001134 // Animate movement of result into the top formula slot.
1135 // Result window now remains translated in the top slot while the result is displayed.
1136 // (We convert it back to formula use only when the user provides new input.)
Justin Klaassen44595162015-05-28 17:55:20 -07001137 // Historical note: In the Lollipop version, this invisibly and instantaneously moved
Hans Boehm84614952014-11-25 18:46:17 -08001138 // formula and result displays back at the end of the animation. We no longer do that,
1139 // so that we can continue to properly support scrolling of the result.
1140 // We assume the result already contains the text to be expanded.
Hans Boehm45223152016-12-21 10:35:35 -08001141 private void onResult(boolean animate, boolean resultWasPreserved) {
Justin Klaassen44595162015-05-28 17:55:20 -07001142 // Calculate the textSize that would be used to display the result in the formula.
1143 // For scrollable results just use the minimum textSize to maximize the number of digits
1144 // that are visible on screen.
1145 float textSize = mFormulaText.getMinimumTextSize();
1146 if (!mResultText.isScrollable()) {
1147 textSize = mFormulaText.getVariableTextSize(mResultText.getText().toString());
1148 }
1149
1150 // Scale the result to match the calculated textSize, minimizing the jump-cut transition
1151 // when a result is reused in a subsequent expression.
1152 final float resultScale = textSize / mResultText.getTextSize();
1153
1154 // Set the result's pivot to match its gravity.
1155 mResultText.setPivotX(mResultText.getWidth() - mResultText.getPaddingRight());
1156 mResultText.setPivotY(mResultText.getHeight() - mResultText.getPaddingBottom());
1157
1158 // Calculate the necessary translations so the result takes the place of the formula and
1159 // the formula moves off the top of the screen.
Annie Chin28589dc2016-06-09 17:50:51 -07001160 final float resultTranslationY = (mFormulaContainer.getBottom() - mResultText.getBottom())
1161 - (mFormulaText.getPaddingBottom() - mResultText.getPaddingBottom());
1162 float formulaTranslationY = -mFormulaContainer.getBottom();
Annie Chin26e159e2016-05-18 15:17:14 -07001163 if (mOneLine) {
1164 // Position the result text.
1165 mResultText.setY(mResultText.getBottom());
Annie Chin28589dc2016-06-09 17:50:51 -07001166 formulaTranslationY = -(findViewById(R.id.toolbar).getBottom()
1167 + mFormulaContainer.getBottom());
Annie Chin26e159e2016-05-18 15:17:14 -07001168 }
Justin Klaassen4b3af052014-05-27 17:53:10 -07001169
Justin Klaassen44595162015-05-28 17:55:20 -07001170 // Change the result's textColor to match the formula.
1171 final int formulaTextColor = mFormulaText.getCurrentTextColor();
1172
Hans Boehm45223152016-12-21 10:35:35 -08001173 if (resultWasPreserved) {
1174 // Result was previously addded to history.
1175 mEvaluator.represerve();
1176 } else {
Hans Boehma5ea8eb2016-12-01 12:33:38 -08001177 // Add current result to history.
1178 mEvaluator.preserve(true);
Hans Boehm45223152016-12-21 10:35:35 -08001179 }
Hans Boehma5ea8eb2016-12-01 12:33:38 -08001180
Hans Boehm45223152016-12-21 10:35:35 -08001181 if (animate) {
Hans Boehmccc55662015-07-07 14:16:59 -07001182 mResultText.announceForAccessibility(getResources().getString(R.string.desc_eq));
1183 mResultText.announceForAccessibility(mResultText.getText());
Hans Boehmc1ea0912015-06-19 15:05:07 -07001184 setState(CalculatorState.ANIMATE);
Hans Boehm84614952014-11-25 18:46:17 -08001185 final AnimatorSet animatorSet = new AnimatorSet();
1186 animatorSet.playTogether(
Justin Klaassen44595162015-05-28 17:55:20 -07001187 ObjectAnimator.ofPropertyValuesHolder(mResultText,
1188 PropertyValuesHolder.ofFloat(View.SCALE_X, resultScale),
1189 PropertyValuesHolder.ofFloat(View.SCALE_Y, resultScale),
1190 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, resultTranslationY)),
1191 ObjectAnimator.ofArgb(mResultText, TEXT_COLOR, formulaTextColor),
Annie Chine918fd22016-03-09 11:07:54 -08001192 ObjectAnimator.ofFloat(mFormulaContainer, View.TRANSLATION_Y,
1193 formulaTranslationY));
Justin Klaassen44595162015-05-28 17:55:20 -07001194 animatorSet.setDuration(getResources().getInteger(
1195 android.R.integer.config_longAnimTime));
Hans Boehm84614952014-11-25 18:46:17 -08001196 animatorSet.addListener(new AnimatorListenerAdapter() {
1197 @Override
Hans Boehm84614952014-11-25 18:46:17 -08001198 public void onAnimationEnd(Animator animation) {
1199 setState(CalculatorState.RESULT);
1200 mCurrentAnimator = null;
1201 }
1202 });
Justin Klaassen4b3af052014-05-27 17:53:10 -07001203
Hans Boehm84614952014-11-25 18:46:17 -08001204 mCurrentAnimator = animatorSet;
1205 animatorSet.start();
Hans Boehm8f051c32016-10-03 16:53:58 -07001206 } else /* No animation desired; get there fast when restarting */ {
Justin Klaassen44595162015-05-28 17:55:20 -07001207 mResultText.setScaleX(resultScale);
1208 mResultText.setScaleY(resultScale);
1209 mResultText.setTranslationY(resultTranslationY);
1210 mResultText.setTextColor(formulaTextColor);
Annie Chine918fd22016-03-09 11:07:54 -08001211 mFormulaContainer.setTranslationY(formulaTranslationY);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001212 setState(CalculatorState.RESULT);
Hans Boehm84614952014-11-25 18:46:17 -08001213 }
Justin Klaassen4b3af052014-05-27 17:53:10 -07001214 }
Hans Boehm84614952014-11-25 18:46:17 -08001215
1216 // Restore positions of the formula and result displays back to their original,
1217 // pre-animation state.
1218 private void restoreDisplayPositions() {
1219 // Clear result.
Justin Klaassen44595162015-05-28 17:55:20 -07001220 mResultText.setText("");
Hans Boehm84614952014-11-25 18:46:17 -08001221 // Reset all of the values modified during the animation.
Justin Klaassen44595162015-05-28 17:55:20 -07001222 mResultText.setScaleX(1.0f);
1223 mResultText.setScaleY(1.0f);
1224 mResultText.setTranslationX(0.0f);
1225 mResultText.setTranslationY(0.0f);
Annie Chine918fd22016-03-09 11:07:54 -08001226 mFormulaContainer.setTranslationY(0.0f);
Hans Boehm84614952014-11-25 18:46:17 -08001227
Hans Boehm08e8f322015-04-21 13:18:38 -07001228 mFormulaText.requestFocus();
Hans Boehm5e6a0ca2015-09-22 17:09:01 -07001229 }
1230
1231 @Override
1232 public void onClick(AlertDialogFragment fragment, int which) {
1233 if (which == DialogInterface.BUTTON_POSITIVE) {
Christine Frankscbc51fa2017-01-04 21:00:36 -08001234 if (HistoryFragment.CLEAR_DIALOG_TAG.equals(fragment.getTag())) {
Annie Chin532b77e2016-12-06 13:30:35 -08001235 // TODO: Try to preserve the current, saved, and memory expressions. How should we
1236 // handle expressions to which they refer?
Annie Chin532b77e2016-12-06 13:30:35 -08001237 mEvaluator.clearEverything();
1238 // TODO: It's not clear what we should really do here. This is an initial hack.
1239 // May want to make onClearAnimationEnd() private if/when we fix this.
1240 onClearAnimationEnd();
Christine Frankscbc51fa2017-01-04 21:00:36 -08001241 mEvaluatorCallback.onMemoryStateChanged();
Annie Chin532b77e2016-12-06 13:30:35 -08001242 onBackPressed();
Christine Frankscbc51fa2017-01-04 21:00:36 -08001243 } else if (Evaluator.TIMEOUT_DIALOG_TAG.equals(fragment.getTag())) {
Annie Chin532b77e2016-12-06 13:30:35 -08001244 // Timeout extension request.
1245 mEvaluator.setLongTimeout();
1246 } else {
1247 Log.e(TAG, "Unknown AlertDialogFragment click:" + fragment.getTag());
1248 }
Hans Boehm5e6a0ca2015-09-22 17:09:01 -07001249 }
1250 }
Hans Boehm84614952014-11-25 18:46:17 -08001251
Justin Klaassend48b7562015-04-16 16:51:38 -07001252 @Override
1253 public boolean onCreateOptionsMenu(Menu menu) {
Justin Klaassend36d63e2015-05-05 12:59:36 -07001254 super.onCreateOptionsMenu(menu);
1255
1256 getMenuInflater().inflate(R.menu.activity_calculator, menu);
Justin Klaassend48b7562015-04-16 16:51:38 -07001257 return true;
1258 }
1259
1260 @Override
1261 public boolean onPrepareOptionsMenu(Menu menu) {
Justin Klaassend36d63e2015-05-05 12:59:36 -07001262 super.onPrepareOptionsMenu(menu);
1263
1264 // Show the leading option when displaying a result.
1265 menu.findItem(R.id.menu_leading).setVisible(mCurrentState == CalculatorState.RESULT);
1266
1267 // Show the fraction option when displaying a rational result.
1268 menu.findItem(R.id.menu_fraction).setVisible(mCurrentState == CalculatorState.RESULT
Hans Boehm8f051c32016-10-03 16:53:58 -07001269 && mEvaluator.getResult(Evaluator.MAIN_INDEX).exactlyDisplayable());
Justin Klaassend36d63e2015-05-05 12:59:36 -07001270
Justin Klaassend48b7562015-04-16 16:51:38 -07001271 return true;
Hans Boehm84614952014-11-25 18:46:17 -08001272 }
1273
1274 @Override
Justin Klaassend48b7562015-04-16 16:51:38 -07001275 public boolean onOptionsItemSelected(MenuItem item) {
Hans Boehm84614952014-11-25 18:46:17 -08001276 switch (item.getItemId()) {
Annie Chinabd202f2016-10-14 14:23:45 -07001277 case R.id.menu_history:
Annie Chin09547532016-10-14 10:59:07 -07001278 showHistoryFragment(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
1279 mDragLayout.setOpen();
Annie Chinabd202f2016-10-14 14:23:45 -07001280 return true;
Justin Klaassend36d63e2015-05-05 12:59:36 -07001281 case R.id.menu_leading:
1282 displayFull();
Hans Boehm84614952014-11-25 18:46:17 -08001283 return true;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001284 case R.id.menu_fraction:
1285 displayFraction();
1286 return true;
Justin Klaassend36d63e2015-05-05 12:59:36 -07001287 case R.id.menu_licenses:
1288 startActivity(new Intent(this, Licenses.class));
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001289 return true;
Hans Boehm84614952014-11-25 18:46:17 -08001290 default:
1291 return super.onOptionsItemSelected(item);
1292 }
1293 }
1294
Annie Chin52eed7a2017-01-04 15:06:05 -08001295 /* Begin override CloseCallback method. */
1296
1297 @Override
1298 public void onClose() {
1299 removeHistoryFragment();
1300 }
1301
1302 /* End override CloseCallback method. */
1303
1304 /* Begin override DragCallback methods */
1305
1306 @Override
1307 public void onStartDraggingOpen() {
1308 showHistoryFragment(FragmentTransaction.TRANSIT_NONE);
1309 }
1310
1311 @Override
1312 public void whileDragging(float yFraction) {
1313 // no-op
1314 }
1315
1316 @Override
1317 public boolean shouldCaptureView(View view, int x, int y) {
1318 return mDragLayout.isMoving()
1319 || mDragLayout.isOpen()
1320 || mDragLayout.isViewUnder(mDisplayView, x, y);
1321 }
1322
1323 @Override
1324 public int getDisplayHeight() {
1325 return mDisplayView.getMeasuredHeight();
1326 }
1327
1328 @Override
1329 public void onLayout(int translation) {
1330 mHistoryFrame.setTranslationY(translation + mDisplayView.getBottom());
1331 }
1332
1333 /* End override DragCallback methods */
1334
Hans Boehm31ea2522016-11-23 17:47:02 -08001335 /**
1336 * Change evaluation state to one that's friendly to the history fragment.
1337 * Return false if that was not easily possible.
1338 */
1339 private boolean prepareForHistory() {
1340 if (mCurrentState == CalculatorState.ANIMATE) {
1341 throw new AssertionError("onUserInteraction should have ended animation");
Annie Chine5567fd2016-12-12 13:45:24 -08001342 } else if (mCurrentState == CalculatorState.EVALUATE) {
1343 // Cancel current evaluation
1344 cancelIfEvaluating(true /* quiet */ );
1345 setState(CalculatorState.INPUT);
1346 return true;
1347 } else if (mCurrentState == CalculatorState.INIT) {
Hans Boehm31ea2522016-11-23 17:47:02 -08001348 // Easiest to just refuse. Otherwise we can see a state change
1349 // while in history mode, which causes all sorts of problems.
1350 // TODO: Consider other alternatives. If we're just doing the decimal conversion
1351 // at the end of an evaluation, we could treat this as RESULT state.
1352 return false;
1353 }
1354 // We should be in INPUT, INIT_FOR_RESULT, RESULT, or ERROR state.
1355 return true;
1356 }
1357
Annie Chin09547532016-10-14 10:59:07 -07001358 private void showHistoryFragment(int transit) {
Annie Chin06fd3cf2016-11-07 16:04:33 -08001359 final FragmentManager manager = getFragmentManager();
1360 if (manager == null || manager.isDestroyed()) {
1361 return;
1362 }
Hans Boehm31ea2522016-11-23 17:47:02 -08001363 if (!prepareForHistory()) {
1364 return;
1365 }
Annie Chind0f87d22016-10-24 09:04:12 -07001366 if (!mDragLayout.isOpen()) {
Christine Franks7485df52016-12-01 13:18:45 -08001367 stopActionModeOrContextMenu();
1368
Annie Chin450de8a2016-11-23 10:03:56 -08001369 manager.beginTransaction()
Annie Chind0f87d22016-10-24 09:04:12 -07001370 .replace(R.id.history_frame, mHistoryFragment, HistoryFragment.TAG)
1371 .setTransition(transit)
1372 .addToBackStack(HistoryFragment.TAG)
1373 .commit();
Annie Chin450de8a2016-11-23 10:03:56 -08001374 manager.executePendingTransactions();
Annie Chineb36f952016-12-08 17:27:19 -08001375
1376 // When HistoryFragment is visible, hide all descendants of the main Calculator view.
1377 mMainCalculator.setImportantForAccessibility(
1378 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
Annie Chind0f87d22016-10-24 09:04:12 -07001379 }
Annie Chin06fd3cf2016-11-07 16:04:33 -08001380 // TODO: pass current scroll position of result
Annie Chin09547532016-10-14 10:59:07 -07001381 }
1382
Christine Franks7452d3a2016-10-27 13:41:18 -07001383 private void displayMessage(String title, String message) {
Annie Chin532b77e2016-12-06 13:30:35 -08001384 AlertDialogFragment.showMessageDialog(this, title, message, null, null /* tag */);
Hans Boehm84614952014-11-25 18:46:17 -08001385 }
1386
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001387 private void displayFraction() {
Hans Boehm8f051c32016-10-03 16:53:58 -07001388 UnifiedReal result = mEvaluator.getResult(Evaluator.MAIN_INDEX);
Christine Franks7452d3a2016-10-27 13:41:18 -07001389 displayMessage(getString(R.string.menu_fraction),
1390 KeyMaps.translateResult(result.toNiceString()));
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001391 }
1392
1393 // Display full result to currently evaluated precision
1394 private void displayFull() {
1395 Resources res = getResources();
Hans Boehm24c91ed2016-06-30 18:53:44 -07001396 String msg = mResultText.getFullText(true /* withSeparators */) + " ";
Justin Klaassen44595162015-05-28 17:55:20 -07001397 if (mResultText.fullTextIsExact()) {
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001398 msg += res.getString(R.string.exact);
1399 } else {
1400 msg += res.getString(R.string.approximate);
1401 }
Christine Franks7452d3a2016-10-27 13:41:18 -07001402 displayMessage(getString(R.string.menu_leading), msg);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001403 }
1404
Hans Boehm017de982015-06-10 17:46:03 -07001405 /**
1406 * Add input characters to the end of the expression.
1407 * Map them to the appropriate button pushes when possible. Leftover characters
1408 * are added to mUnprocessedChars, which is presumed to immediately precede the newly
1409 * added characters.
Hans Boehm65a99a42016-02-03 18:16:07 -08001410 * @param moreChars characters to be added
1411 * @param explicit these characters were explicitly typed by the user, not pasted
Hans Boehm017de982015-06-10 17:46:03 -07001412 */
1413 private void addChars(String moreChars, boolean explicit) {
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001414 if (mUnprocessedChars != null) {
1415 moreChars = mUnprocessedChars + moreChars;
1416 }
1417 int current = 0;
1418 int len = moreChars.length();
Hans Boehm0b9806f2015-06-29 16:07:15 -07001419 boolean lastWasDigit = false;
Hans Boehm5d79d102015-09-16 16:33:47 -07001420 if (mCurrentState == CalculatorState.RESULT && len != 0) {
1421 // Clear display immediately for incomplete function name.
1422 switchToInput(KeyMaps.keyForChar(moreChars.charAt(current)));
1423 }
Hans Boehm24c91ed2016-06-30 18:53:44 -07001424 char groupingSeparator = KeyMaps.translateResult(",").charAt(0);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001425 while (current < len) {
1426 char c = moreChars.charAt(current);
Hans Boehm24c91ed2016-06-30 18:53:44 -07001427 if (Character.isSpaceChar(c) || c == groupingSeparator) {
1428 ++current;
1429 continue;
1430 }
Hans Boehm013969e2015-04-13 20:29:47 -07001431 int k = KeyMaps.keyForChar(c);
Hans Boehm0b9806f2015-06-29 16:07:15 -07001432 if (!explicit) {
1433 int expEnd;
1434 if (lastWasDigit && current !=
1435 (expEnd = Evaluator.exponentEnd(moreChars, current))) {
1436 // Process scientific notation with 'E' when pasting, in spite of ambiguity
1437 // with base of natural log.
1438 // Otherwise the 10^x key is the user's friend.
1439 mEvaluator.addExponent(moreChars, current, expEnd);
1440 current = expEnd;
1441 lastWasDigit = false;
1442 continue;
1443 } else {
1444 boolean isDigit = KeyMaps.digVal(k) != KeyMaps.NOT_DIGIT;
1445 if (current == 0 && (isDigit || k == R.id.dec_point)
Hans Boehm8f051c32016-10-03 16:53:58 -07001446 && mEvaluator.getExpr(Evaluator.MAIN_INDEX).hasTrailingConstant()) {
Hans Boehm0b9806f2015-06-29 16:07:15 -07001447 // Refuse to concatenate pasted content to trailing constant.
1448 // This makes pasting of calculator results more consistent, whether or
1449 // not the old calculator instance is still around.
1450 addKeyToExpr(R.id.op_mul);
1451 }
1452 lastWasDigit = (isDigit || lastWasDigit && k == R.id.dec_point);
1453 }
1454 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001455 if (k != View.NO_ID) {
1456 mCurrentButton = findViewById(k);
Hans Boehm017de982015-06-10 17:46:03 -07001457 if (explicit) {
1458 addExplicitKeyToExpr(k);
1459 } else {
1460 addKeyToExpr(k);
1461 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001462 if (Character.isSurrogate(c)) {
1463 current += 2;
1464 } else {
1465 ++current;
1466 }
1467 continue;
1468 }
Hans Boehm013969e2015-04-13 20:29:47 -07001469 int f = KeyMaps.funForString(moreChars, current);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001470 if (f != View.NO_ID) {
1471 mCurrentButton = findViewById(f);
Hans Boehm017de982015-06-10 17:46:03 -07001472 if (explicit) {
1473 addExplicitKeyToExpr(f);
1474 } else {
1475 addKeyToExpr(f);
1476 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001477 if (f == R.id.op_sqrt) {
1478 // Square root entered as function; don't lose the parenthesis.
1479 addKeyToExpr(R.id.lparen);
1480 }
1481 current = moreChars.indexOf('(', current) + 1;
1482 continue;
1483 }
1484 // There are characters left, but we can't convert them to button presses.
1485 mUnprocessedChars = moreChars.substring(current);
1486 redisplayAfterFormulaChange();
Hans Boehm52d477a2016-04-01 17:42:50 -07001487 showOrHideToolbar();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07001488 return;
1489 }
1490 mUnprocessedChars = null;
1491 redisplayAfterFormulaChange();
Hans Boehm52d477a2016-04-01 17:42:50 -07001492 showOrHideToolbar();
Hans Boehm84614952014-11-25 18:46:17 -08001493 }
1494
Hans Boehm8f051c32016-10-03 16:53:58 -07001495 private void clearIfNotInputState() {
1496 if (mCurrentState == CalculatorState.ERROR
1497 || mCurrentState == CalculatorState.RESULT) {
1498 setState(CalculatorState.INPUT);
1499 mEvaluator.clearMain();
1500 }
1501 }
1502
Chenjie Yu3937b652016-06-01 23:14:26 -07001503 /**
Christine Franksbd90b792016-11-22 10:28:26 -08001504 * Since we only support LTR format, using the RTL comma does not make sense.
1505 */
1506 private String getDecimalSeparator() {
1507 final char defaultSeparator = DecimalFormatSymbols.getInstance().getDecimalSeparator();
1508 final char rtlComma = '\u066b';
1509 return defaultSeparator == rtlComma ? "," : String.valueOf(defaultSeparator);
1510 }
1511
1512 /**
Chenjie Yu3937b652016-06-01 23:14:26 -07001513 * Clean up animation for context menu.
1514 */
1515 @Override
1516 public void onContextMenuClosed(Menu menu) {
1517 stopActionModeOrContextMenu();
1518 }
Christine Franks1d99be12016-11-14 14:00:36 -08001519
1520 public interface OnDisplayMemoryOperationsListener {
1521 boolean shouldDisplayMemory();
1522 }
Justin Klaassen4b3af052014-05-27 17:53:10 -07001523}