]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/NewTransactionItemHolder.java
NT: new rules for determining whether transaction can be submitted (not quite finished)
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / activity / NewTransactionItemHolder.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui.activity;
19
20 import android.annotation.SuppressLint;
21 import android.os.Build;
22 import android.text.Editable;
23 import android.text.TextWatcher;
24 import android.text.method.DigitsKeyListener;
25 import android.view.Gravity;
26 import android.view.View;
27 import android.view.ViewGroup;
28 import android.view.inputmethod.EditorInfo;
29 import android.widget.AutoCompleteTextView;
30 import android.widget.EditText;
31 import android.widget.FrameLayout;
32 import android.widget.LinearLayout;
33 import android.widget.TextView;
34
35 import androidx.annotation.NonNull;
36 import androidx.appcompat.app.AppCompatActivity;
37 import androidx.constraintlayout.widget.ConstraintLayout;
38 import androidx.lifecycle.Observer;
39 import androidx.recyclerview.widget.RecyclerView;
40
41 import net.ktnx.mobileledger.R;
42 import net.ktnx.mobileledger.async.DescriptionSelectedCallback;
43 import net.ktnx.mobileledger.model.Currency;
44 import net.ktnx.mobileledger.model.Data;
45 import net.ktnx.mobileledger.model.LedgerTransactionAccount;
46 import net.ktnx.mobileledger.model.MobileLedgerProfile;
47 import net.ktnx.mobileledger.ui.CurrencySelectorFragment;
48 import net.ktnx.mobileledger.ui.DatePickerFragment;
49 import net.ktnx.mobileledger.ui.OnCurrencySelectedListener;
50 import net.ktnx.mobileledger.ui.TextViewClearHelper;
51 import net.ktnx.mobileledger.utils.Colors;
52 import net.ktnx.mobileledger.utils.DimensionUtils;
53 import net.ktnx.mobileledger.utils.Logger;
54 import net.ktnx.mobileledger.utils.MLDB;
55 import net.ktnx.mobileledger.utils.Misc;
56
57 import java.text.DecimalFormatSymbols;
58 import java.util.Calendar;
59 import java.util.Date;
60 import java.util.GregorianCalendar;
61 import java.util.Locale;
62
63 import static net.ktnx.mobileledger.ui.activity.NewTransactionModel.ItemType;
64
65 class NewTransactionItemHolder extends RecyclerView.ViewHolder
66         implements DatePickerFragment.DatePickedListener, DescriptionSelectedCallback,
67         OnCurrencySelectedListener {
68     private final String decimalSeparator;
69     private final String decimalDot;
70     private final TextView tvCurrency;
71     private NewTransactionModel.Item item;
72     private TextView tvDate;
73     private AutoCompleteTextView tvDescription;
74     private AutoCompleteTextView tvAccount;
75     private TextView tvComment;
76     private EditText tvAmount;
77     private LinearLayout lHead;
78     private ViewGroup lAccount;
79     private FrameLayout lPadding;
80     private MobileLedgerProfile mProfile;
81     private Date date;
82     private Observer<Date> dateObserver;
83     private Observer<String> descriptionObserver;
84     private Observer<String> hintObserver;
85     private Observer<Integer> focusedAccountObserver;
86     private Observer<Integer> accountCountObserver;
87     private Observer<Boolean> editableObserver;
88     private Observer<Boolean> commentVisibleObserver;
89     private Observer<String> commentObserver;
90     private Observer<Currency.Position> currencyPositionObserver;
91     private Observer<Boolean> currencyGapObserver;
92     private Observer<Locale> localeObserver;
93     private Observer<Currency> currencyObserver;
94     private Observer<Boolean> showCurrencyObserver;
95     private boolean inUpdate = false;
96     private boolean syncingData = false;
97     private View commentButton;
98     //TODO multiple amounts with different currencies per posting
99     NewTransactionItemHolder(@NonNull View itemView, NewTransactionItemsAdapter adapter) {
100         super(itemView);
101         tvAccount = itemView.findViewById(R.id.account_row_acc_name);
102         tvComment = itemView.findViewById(R.id.comment);
103         new TextViewClearHelper().attachToTextView((EditText) tvComment);
104         commentButton = itemView.findViewById(R.id.comment_button);
105         tvAmount = itemView.findViewById(R.id.account_row_acc_amounts);
106         tvCurrency = itemView.findViewById(R.id.currency);
107         tvDate = itemView.findViewById(R.id.new_transaction_date);
108         tvDescription = itemView.findViewById(R.id.new_transaction_description);
109         lHead = itemView.findViewById(R.id.ntr_data);
110         lAccount = itemView.findViewById(R.id.ntr_account);
111         lPadding = itemView.findViewById(R.id.ntr_padding);
112
113         tvDescription.setNextFocusForwardId(View.NO_ID);
114         tvAccount.setNextFocusForwardId(View.NO_ID);
115         tvAmount.setNextFocusForwardId(View.NO_ID); // magic!
116
117         tvDate.setOnClickListener(v -> pickTransactionDate());
118
119         mProfile = Data.profile.getValue();
120         if (mProfile == null)
121             throw new AssertionError();
122
123         View.OnFocusChangeListener focusMonitor = (v, hasFocus) -> {
124             if (hasFocus) {
125                 boolean wasSyncing = syncingData;
126                 syncingData = true;
127                 try {
128                     final int pos = getAdapterPosition();
129                     adapter.updateFocusedItem(pos);
130                     switch (v.getId()) {
131                         case R.id.account_row_acc_name:
132                             adapter.noteFocusIsOnAccount(pos);
133                             break;
134                         case R.id.account_row_acc_amounts:
135                             adapter.noteFocusIsOnAmount(pos);
136                             break;
137                         case R.id.comment:
138                             adapter.noteFocusIsOnComment(pos);
139                             break;
140                     }
141                 }
142                 finally {
143                     syncingData = wasSyncing;
144                 }
145             }
146         };
147
148         tvDescription.setOnFocusChangeListener(focusMonitor);
149         tvAccount.setOnFocusChangeListener(focusMonitor);
150         tvAmount.setOnFocusChangeListener(focusMonitor);
151
152         itemView.findViewById(R.id.comment_button)
153                 .setOnClickListener(v -> {
154                     final int pos = getAdapterPosition();
155                     adapter.toggleComment(pos);
156                 });
157         MLDB.hookAutocompletionAdapter(tvDescription.getContext(), tvDescription,
158                 MLDB.DESCRIPTION_HISTORY_TABLE, "description", false, adapter, mProfile);
159         MLDB.hookAutocompletionAdapter(tvAccount.getContext(), tvAccount, MLDB.ACCOUNTS_TABLE,
160                 "name", true, this, mProfile);
161
162         // FIXME: react on configuration (locale) changes
163         decimalSeparator = String.valueOf(DecimalFormatSymbols.getInstance()
164                                                               .getMonetaryDecimalSeparator());
165         decimalDot = ".";
166
167         final TextWatcher tw = new TextWatcher() {
168             @Override
169             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
170             }
171
172             @Override
173             public void onTextChanged(CharSequence s, int start, int before, int count) {
174             }
175
176             @Override
177             public void afterTextChanged(Editable s) {
178 //                debug("input", "text changed");
179                 if (inUpdate)
180                     return;
181
182                 Logger.debug("textWatcher", "calling syncData()");
183                 syncData();
184                 Logger.debug("textWatcher",
185                         "syncData() returned, checking if transaction is submittable");
186                 adapter.model.checkTransactionSubmittable(adapter);
187                 Logger.debug("textWatcher", "done");
188             }
189         };
190         final TextWatcher amountWatcher = new TextWatcher() {
191             @Override
192             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
193                 Logger.debug("num",
194                         String.format(Locale.US, "beforeTextChanged: start=%d, count=%d, after=%d",
195                                 start, count, after));
196             }
197             @Override
198             public void onTextChanged(CharSequence s, int start, int before, int count) {
199                 Logger.debug("num",
200                         String.format(Locale.US, "onTextChanged: start=%d, before=%d, count=%d",
201                                 start, before, count));
202             }
203             @Override
204             public void afterTextChanged(Editable s) {
205                 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
206                     // only one decimal separator is allowed
207                     // plus and minus are allowed only at the beginning
208                     String allowed = "0123456789";
209                     String val = s.toString();
210                     if (val.isEmpty() || (tvAmount.getSelectionStart() == 0))
211                         allowed += "-";
212                     if (!val.contains(decimalSeparator) && !val.contains(decimalDot))
213                         allowed += decimalSeparator + decimalDot;
214
215                     tvAmount.setKeyListener(DigitsKeyListener.getInstance(allowed));
216
217                     syncData();
218                     adapter.model.checkTransactionSubmittable(adapter);
219                 }
220             }
221         };
222         tvDescription.addTextChangedListener(tw);
223         tvAccount.addTextChangedListener(tw);
224         tvComment.addTextChangedListener(tw);
225         tvAmount.addTextChangedListener(amountWatcher);
226
227         tvCurrency.setOnClickListener(v -> {
228             CurrencySelectorFragment cpf = new CurrencySelectorFragment();
229             cpf.setOnCurrencySelectedListener(this);
230             final AppCompatActivity activity = (AppCompatActivity) v.getContext();
231             cpf.show(activity.getSupportFragmentManager(), "currency-selector");
232         });
233
234         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
235             tvAmount.setKeyListener(
236                     DigitsKeyListener.getInstance(Data.locale.getValue(), true, true));
237         else
238             tvAmount.setKeyListener(
239                     DigitsKeyListener.getInstance("0123456789+-" + decimalSeparator + decimalDot));
240
241         dateObserver = date -> {
242             if (syncingData)
243                 return;
244             syncingData = true;
245             try {
246                 tvDate.setText(item.getFormattedDate());
247             }
248             finally {
249                 syncingData = false;
250             }
251         };
252         descriptionObserver = description -> {
253             if (syncingData)
254                 return;
255             syncingData = true;
256             try {
257                 tvDescription.setText(description);
258             }
259             finally {
260                 syncingData = false;
261             }
262         };
263         hintObserver = hint -> {
264             if (syncingData)
265                 return;
266             syncingData = true;
267             try {
268                 if (hint == null)
269                     tvAmount.setHint(R.string.zero_amount);
270                 else
271                     tvAmount.setHint(hint);
272             }
273             finally {
274                 syncingData = false;
275             }
276         };
277         editableObserver = this::setEditable;
278         commentVisibleObserver = this::setCommentVisible;
279         commentObserver = this::setComment;
280         focusedAccountObserver = index -> {
281             if ((index != null) && index.equals(getAdapterPosition())) {
282                 switch (item.getType()) {
283                     case generalData:
284                         // bad idea - double pop-up, and not really necessary.
285                         // the user can tap the input to get the calendar
286                         //if (!tvDate.hasFocus()) tvDate.requestFocus();
287                         boolean focused = tvDescription.requestFocus();
288                         tvDescription.dismissDropDown();
289                         if (focused)
290                             Misc.showSoftKeyboard(
291                                     (NewTransactionActivity) tvDescription.getContext());
292                         break;
293                     case transactionRow:
294                         // do nothing if a row element already has the focus
295                         if (!itemView.hasFocus()) {
296                             switch (item.getFocusedElement()) {
297                                 case Amount:
298                                     tvAmount.requestFocus();
299                                     break;
300                                 case Comment:
301                                     tvComment.requestFocus();
302                                     break;
303                                 case Account:
304                                     focused = tvAccount.requestFocus();
305                                     tvAccount.dismissDropDown();
306                                     if (focused)
307                                         Misc.showSoftKeyboard(
308                                                 (NewTransactionActivity) tvAccount.getContext());
309                                     break;
310                             }
311                         }
312
313                         break;
314                 }
315             }
316         };
317         accountCountObserver = count -> {
318             final int adapterPosition = getAdapterPosition();
319             final int layoutPosition = getLayoutPosition();
320             Logger.debug("holder",
321                     String.format(Locale.US, "count=%d; pos=%d, layoutPos=%d [%s]", count,
322                             adapterPosition, layoutPosition, item.getType()
323                                                                  .toString()
324                                                                  .concat(item.getType() ==
325                                                                          ItemType.transactionRow
326                                                                          ? String.format(Locale.US,
327                                                                          "'%s'=%s",
328                                                                          item.getAccount()
329                                                                              .getAccountName(),
330                                                                          item.getAccount()
331                                                                              .isAmountSet()
332                                                                          ? String.format(Locale.US,
333                                                                                  "%.2f",
334                                                                                  item.getAccount()
335                                                                                      .getAmount())
336                                                                          : "unset") : "")));
337             if (adapterPosition == count)
338                 tvAmount.setImeOptions(EditorInfo.IME_ACTION_DONE);
339             else
340                 tvAmount.setImeOptions(EditorInfo.IME_ACTION_NEXT);
341         };
342
343         currencyPositionObserver = position -> {
344             updateCurrencyPositionAndPadding(position, Data.currencyGap.getValue());
345         };
346
347         currencyGapObserver = hasGap -> {
348             updateCurrencyPositionAndPadding(Data.currencySymbolPosition.getValue(), hasGap);
349         };
350
351         localeObserver = locale -> {
352             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
353                 tvAmount.setKeyListener(DigitsKeyListener.getInstance(locale, true, true));
354         };
355
356         currencyObserver = currency -> {
357             setCurrency(currency);
358             adapter.model.checkTransactionSubmittable(adapter);
359         };
360
361         showCurrencyObserver = showCurrency -> {
362             if (item.getType() == ItemType.transactionRow) {
363                 if (showCurrency) {
364                     tvCurrency.setVisibility(View.VISIBLE);
365                 }
366                 else {
367                     tvCurrency.setVisibility(View.GONE);
368                     item.setCurrency(null);
369                 }
370             }
371         };
372     }
373     private void updateCurrencyPositionAndPadding(Currency.Position position, boolean hasGap) {
374         ConstraintLayout.LayoutParams amountLP =
375                 (ConstraintLayout.LayoutParams) tvAmount.getLayoutParams();
376         ConstraintLayout.LayoutParams currencyLP =
377                 (ConstraintLayout.LayoutParams) tvCurrency.getLayoutParams();
378
379         if (position == Currency.Position.before) {
380             currencyLP.startToStart = ConstraintLayout.LayoutParams.PARENT_ID;
381             currencyLP.endToEnd = ConstraintLayout.LayoutParams.UNSET;
382
383             amountLP.endToEnd = ConstraintLayout.LayoutParams.PARENT_ID;
384             amountLP.endToStart = ConstraintLayout.LayoutParams.UNSET;
385             amountLP.startToStart = ConstraintLayout.LayoutParams.UNSET;
386             amountLP.startToEnd = tvCurrency.getId();
387
388             tvCurrency.setGravity(Gravity.END);
389         }
390         else {
391             currencyLP.startToStart = ConstraintLayout.LayoutParams.UNSET;
392             currencyLP.endToEnd = ConstraintLayout.LayoutParams.PARENT_ID;
393
394             amountLP.startToStart = ConstraintLayout.LayoutParams.PARENT_ID;
395             amountLP.startToEnd = ConstraintLayout.LayoutParams.UNSET;
396             amountLP.endToEnd = ConstraintLayout.LayoutParams.UNSET;
397             amountLP.endToStart = tvCurrency.getId();
398
399             tvCurrency.setGravity(Gravity.START);
400         }
401
402         amountLP.resolveLayoutDirection(tvAmount.getLayoutDirection());
403         currencyLP.resolveLayoutDirection(tvCurrency.getLayoutDirection());
404
405         tvAmount.setLayoutParams(amountLP);
406         tvCurrency.setLayoutParams(currencyLP);
407
408         // distance between the amount and the currency symbol
409         int gapSize = DimensionUtils.sp2px(tvCurrency.getContext(), 5);
410
411         if (position == Currency.Position.before) {
412             tvCurrency.setPaddingRelative(0, 0, hasGap ? gapSize : 0, 0);
413         }
414         else {
415             tvCurrency.setPaddingRelative(hasGap ? gapSize : 0, 0, 0, 0);
416         }
417     }
418     private void setCurrencyString(String currency) {
419         if ((currency == null) || currency.isEmpty()) {
420             tvCurrency.setText(R.string.currency_symbol);
421             tvCurrency.setTextColor(0x7f000000 + (0x00ffffff & Colors.defaultTextColor));
422         }
423         else {
424             tvCurrency.setText(currency);
425             tvCurrency.setTextColor(Colors.defaultTextColor);
426         }
427     }
428     private void setCurrency(Currency currency) {
429         setCurrencyString((currency == null) ? null : currency.getName());
430     }
431     private void setEditable(Boolean editable) {
432         tvDate.setEnabled(editable);
433         tvDescription.setEnabled(editable);
434         tvAccount.setEnabled(editable);
435         tvAmount.setEnabled(editable);
436     }
437     private void setCommentVisible(Boolean visible) {
438         if (visible) {
439             // showing; show the comment view and align the comment button to it
440             tvComment.setVisibility(View.VISIBLE);
441             tvComment.requestFocus();
442             ConstraintLayout.LayoutParams lp =
443                     (ConstraintLayout.LayoutParams) commentButton.getLayoutParams();
444             lp.bottomToBottom = R.id.comment;
445
446             commentButton.setLayoutParams(lp);
447         }
448         else {
449             // hiding; hide the comment comment view and align amounts layout under it
450             tvComment.setVisibility(View.GONE);
451             ConstraintLayout.LayoutParams lp =
452                     (ConstraintLayout.LayoutParams) commentButton.getLayoutParams();
453             lp.bottomToBottom = R.id.ntr_account;   // R.id.parent doesn't work here
454
455             commentButton.setLayoutParams(lp);
456         }
457     }
458     private void setComment(String comment) {
459         if ((comment != null) && !comment.isEmpty())
460             commentButton.setBackgroundResource(R.drawable.ic_comment_black_24dp);
461         else
462             commentButton.setBackgroundResource(R.drawable.ic_comment_gray_24dp);
463     }
464     private void beginUpdates() {
465         if (inUpdate)
466             throw new RuntimeException("Already in update mode");
467         inUpdate = true;
468     }
469     private void endUpdates() {
470         if (!inUpdate)
471             throw new RuntimeException("Not in update mode");
472         inUpdate = false;
473     }
474     /**
475      * syncData()
476      * <p>
477      * Stores the data from the UI elements into the model item
478      */
479     private void syncData() {
480         if (item == null)
481             return;
482
483         if (syncingData) {
484             Logger.debug("new-trans", "skipping syncData() loop");
485             return;
486         }
487
488         syncingData = true;
489
490         try {
491             switch (item.getType()) {
492                 case generalData:
493                     item.setDate(String.valueOf(tvDate.getText()));
494                     item.setDescription(String.valueOf(tvDescription.getText()));
495                     break;
496                 case transactionRow:
497                     final LedgerTransactionAccount account = item.getAccount();
498                     account.setAccountName(String.valueOf(tvAccount.getText()));
499
500                     item.setComment(String.valueOf(tvComment.getText()));
501
502                     // TODO: handle multiple amounts
503                     String amount = String.valueOf(tvAmount.getText());
504                     amount = amount.trim();
505
506                     if (amount.isEmpty()) {
507                         account.resetAmount();
508 //                        account.setCurrency(null);
509                     }
510                     else {
511                         try {
512                             amount = amount.replace(decimalSeparator, decimalDot);
513                             account.setAmount(Float.parseFloat(amount));
514                         }
515                         catch (NumberFormatException e) {
516                             Logger.debug("new-trans", String.format(
517                                     "assuming amount is not set due to number format exception. " +
518                                     "input was '%s'", amount));
519                             account.resetAmount();
520                         }
521                         final String curr = String.valueOf(tvCurrency.getText());
522                         if (curr.equals(tvCurrency.getContext()
523                                                   .getResources()
524                                                   .getString(R.string.currency_symbol)) ||
525                             curr.isEmpty())
526                             account.setCurrency(null);
527                         else
528                             account.setCurrency(curr);
529                     }
530
531                     break;
532                 case bottomFiller:
533                     throw new RuntimeException("Should not happen");
534             }
535         }
536         finally {
537             syncingData = false;
538         }
539     }
540     private void pickTransactionDate() {
541         DatePickerFragment picker = new DatePickerFragment();
542         picker.setFutureDates(mProfile.getFutureDates());
543         picker.setOnDatePickedListener(this);
544         picker.show(((NewTransactionActivity) tvDate.getContext()).getSupportFragmentManager(),
545                 "datePicker");
546     }
547     /**
548      * setData
549      *
550      * @param item updates the UI elements with the data from the model item
551      */
552     @SuppressLint("DefaultLocale")
553     public void setData(NewTransactionModel.Item item) {
554         beginUpdates();
555         try {
556             if (this.item != null && !this.item.equals(item)) {
557                 this.item.stopObservingDate(dateObserver);
558                 this.item.stopObservingDescription(descriptionObserver);
559                 this.item.stopObservingAmountHint(hintObserver);
560                 this.item.stopObservingEditableFlag(editableObserver);
561                 this.item.stopObservingCommentVisible(commentVisibleObserver);
562                 this.item.stopObservingComment(commentObserver);
563                 this.item.getModel()
564                          .stopObservingFocusedItem(focusedAccountObserver);
565                 this.item.getModel()
566                          .stopObservingAccountCount(accountCountObserver);
567                 Data.currencySymbolPosition.removeObserver(currencyPositionObserver);
568                 Data.currencyGap.removeObserver(currencyGapObserver);
569                 Data.locale.removeObserver(localeObserver);
570                 this.item.stopObservingCurrency(currencyObserver);
571                 this.item.getModel().showCurrency.removeObserver(showCurrencyObserver);
572
573                 this.item = null;
574             }
575
576             switch (item.getType()) {
577                 case generalData:
578                     tvDate.setText(item.getFormattedDate());
579                     tvDescription.setText(item.getDescription());
580                     lHead.setVisibility(View.VISIBLE);
581                     lAccount.setVisibility(View.GONE);
582                     lPadding.setVisibility(View.GONE);
583                     setEditable(true);
584                     break;
585                 case transactionRow:
586                     LedgerTransactionAccount acc = item.getAccount();
587                     tvAccount.setText(acc.getAccountName());
588                     tvComment.setText(acc.getComment());
589                     if (acc.isAmountSet()) {
590                         tvAmount.setText(String.format("%1.2f", acc.getAmount()));
591                     }
592                     else {
593                         tvAmount.setText("");
594 //                        tvAmount.setHint(R.string.zero_amount);
595                     }
596                     tvAmount.setHint(item.getAmountHint());
597                     setCurrencyString(acc.getCurrency());
598                     lHead.setVisibility(View.GONE);
599                     lAccount.setVisibility(View.VISIBLE);
600                     lPadding.setVisibility(View.GONE);
601                     setEditable(true);
602                     break;
603                 case bottomFiller:
604                     lHead.setVisibility(View.GONE);
605                     lAccount.setVisibility(View.GONE);
606                     lPadding.setVisibility(View.VISIBLE);
607                     setEditable(false);
608                     break;
609             }
610
611             if (this.item == null) { // was null or has changed
612                 this.item = item;
613                 final NewTransactionActivity activity =
614                         (NewTransactionActivity) tvDescription.getContext();
615                 item.observeDate(activity, dateObserver);
616                 item.observeDescription(activity, descriptionObserver);
617                 item.observeAmountHint(activity, hintObserver);
618                 item.observeEditableFlag(activity, editableObserver);
619                 item.observeCommentVisible(activity, commentVisibleObserver);
620                 item.observeComment(activity, commentObserver);
621                 item.getModel()
622                     .observeFocusedItem(activity, focusedAccountObserver);
623                 item.getModel()
624                     .observeAccountCount(activity, accountCountObserver);
625                 Data.currencySymbolPosition.observe(activity, currencyPositionObserver);
626                 Data.currencyGap.observe(activity, currencyGapObserver);
627                 Data.locale.observe(activity, localeObserver);
628                 item.observeCurrency(activity, currencyObserver);
629                 item.getModel().showCurrency.observe(activity, showCurrencyObserver);
630             }
631         }
632         finally {
633             endUpdates();
634         }
635     }
636     @Override
637     public void onDatePicked(int year, int month, int day) {
638         final Calendar c = GregorianCalendar.getInstance();
639         c.set(year, month, day);
640         item.setDate(c.getTime());
641         boolean focused = tvDescription.requestFocus();
642         if (focused)
643             Misc.showSoftKeyboard((NewTransactionActivity) tvAccount.getContext());
644
645     }
646     @Override
647     public void onCurrencySelected(Currency item) {
648         this.item.setCurrency(item);
649     }
650     @Override
651     public void descriptionSelected(String description) {
652         tvAccount.setText(description);
653         tvAmount.requestFocus(View.FOCUS_FORWARD);
654     }
655 }