]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/MainActivity.java
separate FAB management in a helper class
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / activity / MainActivity.java
1 /*
2  * Copyright © 2021 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.content.Context;
21 import android.content.Intent;
22 import android.content.pm.PackageInfo;
23 import android.content.pm.ShortcutInfo;
24 import android.content.pm.ShortcutManager;
25 import android.content.res.ColorStateList;
26 import android.graphics.Color;
27 import android.graphics.drawable.Icon;
28 import android.os.Build;
29 import android.os.Bundle;
30 import android.text.format.DateUtils;
31 import android.util.Log;
32 import android.view.View;
33 import android.view.animation.AnimationUtils;
34 import android.widget.TextView;
35
36 import androidx.annotation.NonNull;
37 import androidx.appcompat.app.ActionBarDrawerToggle;
38 import androidx.appcompat.app.AlertDialog;
39 import androidx.core.view.GravityCompat;
40 import androidx.drawerlayout.widget.DrawerLayout;
41 import androidx.fragment.app.Fragment;
42 import androidx.fragment.app.FragmentActivity;
43 import androidx.lifecycle.ViewModelProvider;
44 import androidx.recyclerview.widget.LinearLayoutManager;
45 import androidx.recyclerview.widget.RecyclerView;
46 import androidx.viewpager2.adapter.FragmentStateAdapter;
47 import androidx.viewpager2.widget.ViewPager2;
48
49 import com.google.android.material.snackbar.Snackbar;
50
51 import net.ktnx.mobileledger.R;
52 import net.ktnx.mobileledger.async.RetrieveTransactionsTask;
53 import net.ktnx.mobileledger.databinding.ActivityMainBinding;
54 import net.ktnx.mobileledger.model.Data;
55 import net.ktnx.mobileledger.model.MobileLedgerProfile;
56 import net.ktnx.mobileledger.ui.FabManager;
57 import net.ktnx.mobileledger.ui.MainModel;
58 import net.ktnx.mobileledger.ui.account_summary.AccountSummaryFragment;
59 import net.ktnx.mobileledger.ui.new_transaction.NewTransactionActivity;
60 import net.ktnx.mobileledger.ui.profiles.ProfilesRecyclerViewAdapter;
61 import net.ktnx.mobileledger.ui.templates.TemplatesActivity;
62 import net.ktnx.mobileledger.ui.transaction_list.TransactionListFragment;
63 import net.ktnx.mobileledger.utils.Colors;
64 import net.ktnx.mobileledger.utils.Logger;
65 import net.ktnx.mobileledger.utils.MLDB;
66
67 import org.jetbrains.annotations.NotNull;
68
69 import java.util.ArrayList;
70 import java.util.Date;
71 import java.util.List;
72 import java.util.Locale;
73 import java.util.Objects;
74
75 /*
76  * TODO: reports
77  *  */
78
79 public class MainActivity extends ProfileThemedActivity implements FabManager.FabHandler {
80     public static final String STATE_CURRENT_PAGE = "current_page";
81     public static final String BUNDLE_SAVED_STATE = "bundle_savedState";
82     public static final String STATE_ACC_FILTER = "account_filter";
83     private static final boolean FAB_HIDDEN = false;
84     private static final boolean FAB_SHOWN = true;
85     private SectionsPagerAdapter mSectionsPagerAdapter;
86     private ProfilesRecyclerViewAdapter mProfileListAdapter;
87     private int mCurrentPage;
88     private boolean mBackMeansToAccountList = false;
89     private DrawerLayout.SimpleDrawerListener drawerListener;
90     private ActionBarDrawerToggle barDrawerToggle;
91     private ViewPager2.OnPageChangeCallback pageChangeCallback;
92     private MobileLedgerProfile profile;
93     private MainModel mainModel;
94     private ActivityMainBinding b;
95     private int fabVerticalOffset;
96     private FabManager fabManager;
97     @Override
98     protected void onStart() {
99         super.onStart();
100
101         Logger.debug("MainActivity", "onStart()");
102
103         b.mainPager.setCurrentItem(mCurrentPage, false);
104     }
105     @Override
106     protected void onSaveInstanceState(@NotNull Bundle outState) {
107         super.onSaveInstanceState(outState);
108         outState.putInt(STATE_CURRENT_PAGE, b.mainPager.getCurrentItem());
109         if (mainModel.getAccountFilter()
110                      .getValue() != null)
111             outState.putString(STATE_ACC_FILTER, mainModel.getAccountFilter()
112                                                           .getValue());
113     }
114     @Override
115     protected void onDestroy() {
116         mSectionsPagerAdapter = null;
117         b.navProfileList.setAdapter(null);
118         b.drawerLayout.removeDrawerListener(drawerListener);
119         drawerListener = null;
120         b.drawerLayout.removeDrawerListener(barDrawerToggle);
121         barDrawerToggle = null;
122         b.mainPager.unregisterOnPageChangeCallback(pageChangeCallback);
123         pageChangeCallback = null;
124         super.onDestroy();
125     }
126     @Override
127     protected void onResume() {
128         super.onResume();
129         fabShouldShow();
130     }
131     @Override
132     protected void onCreate(Bundle savedInstanceState) {
133         Logger.debug("MainActivity", "onCreate()/entry");
134         super.onCreate(savedInstanceState);
135         Logger.debug("MainActivity", "onCreate()/after super");
136         b = ActivityMainBinding.inflate(getLayoutInflater());
137         setContentView(b.getRoot());
138
139         mainModel = new ViewModelProvider(this).get(MainModel.class);
140
141         mSectionsPagerAdapter = new SectionsPagerAdapter(this);
142
143         Bundle extra = getIntent().getBundleExtra(BUNDLE_SAVED_STATE);
144         if (extra != null && savedInstanceState == null)
145             savedInstanceState = extra;
146
147
148         setSupportActionBar(b.toolbar);
149
150         Data.observeProfile(this, this::onProfileChanged);
151
152         Data.profiles.observe(this, this::onProfileListChanged);
153         Data.backgroundTaskProgress.observe(this, this::onRetrieveProgress);
154         Data.backgroundTasksRunning.observe(this, this::onRetrieveRunningChanged);
155
156         if (barDrawerToggle == null) {
157             barDrawerToggle = new ActionBarDrawerToggle(this, b.drawerLayout, b.toolbar,
158                     R.string.navigation_drawer_open, R.string.navigation_drawer_close);
159             b.drawerLayout.addDrawerListener(barDrawerToggle);
160         }
161         barDrawerToggle.syncState();
162
163         try {
164             PackageInfo pi = getApplicationContext().getPackageManager()
165                                                     .getPackageInfo(getPackageName(), 0);
166             ((TextView) b.navUpper.findViewById(R.id.drawer_version_text)).setText(pi.versionName);
167             ((TextView) b.noProfilesLayout.findViewById(R.id.drawer_version_text)).setText(
168                     pi.versionName);
169         }
170         catch (Exception e) {
171             e.printStackTrace();
172         }
173
174         markDrawerItemCurrent(R.id.nav_account_summary);
175
176         b.mainPager.setAdapter(mSectionsPagerAdapter);
177
178         if (pageChangeCallback == null) {
179             pageChangeCallback = new ViewPager2.OnPageChangeCallback() {
180                 @Override
181                 public void onPageSelected(int position) {
182                     mCurrentPage = position;
183                     switch (position) {
184                         case 0:
185                             markDrawerItemCurrent(R.id.nav_account_summary);
186                             break;
187                         case 1:
188                             markDrawerItemCurrent(R.id.nav_latest_transactions);
189                             break;
190                         default:
191                             Log.e("MainActivity",
192                                     String.format("Unexpected page index %d", position));
193                     }
194
195                     super.onPageSelected(position);
196                 }
197             };
198             b.mainPager.registerOnPageChangeCallback(pageChangeCallback);
199         }
200
201         mCurrentPage = 0;
202         if (savedInstanceState != null) {
203             int currentPage = savedInstanceState.getInt(STATE_CURRENT_PAGE, -1);
204             if (currentPage != -1) {
205                 mCurrentPage = currentPage;
206             }
207             mainModel.getAccountFilter()
208                      .setValue(savedInstanceState.getString(STATE_ACC_FILTER, null));
209         }
210
211         b.btnNoProfilesAdd.setOnClickListener(
212                 v -> MobileLedgerProfile.startEditProfileActivity(this, null));
213
214         b.btnAddTransaction.setOnClickListener(this::fabNewTransactionClicked);
215
216         b.navNewProfileButton.setOnClickListener(
217                 v -> MobileLedgerProfile.startEditProfileActivity(this, null));
218
219         b.transactionListCancelDownload.setOnClickListener(this::onStopTransactionRefreshClick);
220
221         if (mProfileListAdapter == null)
222             mProfileListAdapter = new ProfilesRecyclerViewAdapter();
223         b.navProfileList.setAdapter(mProfileListAdapter);
224
225         mProfileListAdapter.editingProfiles.observe(this, newValue -> {
226             if (newValue) {
227                 b.navProfilesStartEdit.setVisibility(View.GONE);
228                 b.navProfilesCancelEdit.setVisibility(View.VISIBLE);
229                 b.navNewProfileButton.setVisibility(View.VISIBLE);
230                 if (b.drawerLayout.isDrawerOpen(GravityCompat.START)) {
231                     b.navProfilesStartEdit.startAnimation(
232                             AnimationUtils.loadAnimation(MainActivity.this, R.anim.fade_out));
233                     b.navProfilesCancelEdit.startAnimation(
234                             AnimationUtils.loadAnimation(MainActivity.this, R.anim.fade_in));
235                     b.navNewProfileButton.startAnimation(
236                             AnimationUtils.loadAnimation(MainActivity.this, R.anim.fade_in));
237                 }
238             }
239             else {
240                 b.navProfilesCancelEdit.setVisibility(View.GONE);
241                 b.navProfilesStartEdit.setVisibility(View.VISIBLE);
242                 b.navNewProfileButton.setVisibility(View.GONE);
243                 if (b.drawerLayout.isDrawerOpen(GravityCompat.START)) {
244                     b.navProfilesCancelEdit.startAnimation(
245                             AnimationUtils.loadAnimation(MainActivity.this, R.anim.fade_out));
246                     b.navProfilesStartEdit.startAnimation(
247                             AnimationUtils.loadAnimation(MainActivity.this, R.anim.fade_in));
248                     b.navNewProfileButton.startAnimation(
249                             AnimationUtils.loadAnimation(MainActivity.this, R.anim.fade_out));
250                 }
251             }
252
253             mProfileListAdapter.notifyDataSetChanged();
254         });
255
256         fabManager = new FabManager(b.btnAddTransaction);
257
258         LinearLayoutManager llm = new LinearLayoutManager(this);
259
260         llm.setOrientation(RecyclerView.VERTICAL);
261         b.navProfileList.setLayoutManager(llm);
262
263         b.navProfilesStartEdit.setOnClickListener((v) -> mProfileListAdapter.flipEditingProfiles());
264         b.navProfilesCancelEdit.setOnClickListener(
265                 (v) -> mProfileListAdapter.flipEditingProfiles());
266         b.navProfileListHeadButtons.setOnClickListener(
267                 (v) -> mProfileListAdapter.flipEditingProfiles());
268         if (drawerListener == null) {
269             drawerListener = new DrawerLayout.SimpleDrawerListener() {
270                 @Override
271                 public void onDrawerSlide(@NonNull View drawerView, float slideOffset) {
272                     if (slideOffset > 0.2)
273                         fabManager.hideFab();
274                 }
275                 @Override
276                 public void onDrawerClosed(View drawerView) {
277                     super.onDrawerClosed(drawerView);
278                     mProfileListAdapter.setAnimationsEnabled(false);
279                     mProfileListAdapter.editingProfiles.setValue(false);
280                     Data.drawerOpen.setValue(false);
281                     fabShouldShow();
282                 }
283                 @Override
284                 public void onDrawerOpened(View drawerView) {
285                     super.onDrawerOpened(drawerView);
286                     mProfileListAdapter.setAnimationsEnabled(true);
287                     Data.drawerOpen.setValue(true);
288                     fabManager.hideFab();
289                 }
290             };
291             b.drawerLayout.addDrawerListener(drawerListener);
292         }
293
294         Data.drawerOpen.observe(this, open -> {
295             if (open)
296                 b.drawerLayout.open();
297             else
298                 b.drawerLayout.close();
299         });
300
301         mainModel.getUpdateError()
302                  .observe(this, (error) -> {
303                      if (error == null)
304                          return;
305
306                      Snackbar.make(b.mainPager, error, Snackbar.LENGTH_INDEFINITE)
307                              .show();
308                      mainModel.clearUpdateError();
309                  });
310         Data.locale.observe(this, l -> refreshLastUpdateInfo());
311         Data.lastUpdateDate.observe(this, date -> refreshLastUpdateInfo());
312         Data.lastUpdateTransactionCount.observe(this, date -> refreshLastUpdateInfo());
313         Data.lastUpdateAccountCount.observe(this, date -> refreshLastUpdateInfo());
314         b.navAccountSummary.setOnClickListener(this::onAccountSummaryClicked);
315         b.navLatestTransactions.setOnClickListener(this::onLatestTransactionsClicked);
316         b.navPatterns.setOnClickListener(this::onPatternsClick);
317     }
318     private void onPatternsClick(View view) {
319         Intent intent = new Intent(this, TemplatesActivity.class);
320         startActivity(intent);
321     }
322     private void scheduleDataRetrievalIfStale(long lastUpdate) {
323         long now = new Date().getTime();
324         if ((lastUpdate == 0) || (now > (lastUpdate + (24 * 3600 * 1000)))) {
325             if (lastUpdate == 0)
326                 Logger.debug("db::", "WEB data never fetched. scheduling a fetch");
327             else
328                 Logger.debug("db", String.format(Locale.ENGLISH,
329                         "WEB data last fetched at %1.3f and now is %1.3f. re-fetching",
330                         lastUpdate / 1000f, now / 1000f));
331
332             mainModel.scheduleTransactionListRetrieval();
333         }
334     }
335     private void createShortcuts(List<MobileLedgerProfile> list) {
336         if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N_MR1)
337             return;
338
339         ShortcutManager sm = getSystemService(ShortcutManager.class);
340         List<ShortcutInfo> shortcuts = new ArrayList<>();
341         int i = 0;
342         for (MobileLedgerProfile p : list) {
343             if (shortcuts.size() >= sm.getMaxShortcutCountPerActivity())
344                 break;
345
346             if (!p.isPostingPermitted())
347                 continue;
348
349             final ShortcutInfo.Builder builder =
350                     new ShortcutInfo.Builder(this, "new_transaction_" + p.getUuid());
351             ShortcutInfo si = builder.setShortLabel(p.getName())
352                                      .setIcon(Icon.createWithResource(this,
353                                              R.drawable.thick_plus_icon))
354                                      .setIntent(new Intent(Intent.ACTION_VIEW, null, this,
355                                              NewTransactionActivity.class).putExtra("profile_uuid",
356                                              p.getUuid()))
357                                      .setRank(i)
358                                      .build();
359             shortcuts.add(si);
360             i++;
361         }
362         sm.setDynamicShortcuts(shortcuts);
363     }
364     private void onProfileListChanged(List<MobileLedgerProfile> newList) {
365         if ((newList == null) || newList.isEmpty()) {
366             b.noProfilesLayout.setVisibility(View.VISIBLE);
367             b.mainAppLayout.setVisibility(View.GONE);
368             return;
369         }
370
371         b.mainAppLayout.setVisibility(View.VISIBLE);
372         b.noProfilesLayout.setVisibility(View.GONE);
373
374         b.navProfileList.setMinimumHeight(
375                 (int) (getResources().getDimension(R.dimen.thumb_row_height) * newList.size()));
376
377         Logger.debug("profiles", "profile list changed");
378         mProfileListAdapter.notifyDataSetChanged();
379
380         createShortcuts(newList);
381     }
382     /**
383      * called when the current profile has changed
384      */
385     private void onProfileChanged(MobileLedgerProfile profile) {
386         if (this.profile == null) {
387             if (profile == null)
388                 return;
389         }
390         else {
391             if (this.profile.equals(profile))
392                 return;
393         }
394
395         boolean haveProfile = profile != null;
396
397         if (haveProfile)
398             setTitle(profile.getName());
399         else
400             setTitle(R.string.app_name);
401
402         mainModel.setProfile(profile);
403
404         this.profile = profile;
405
406         int newProfileTheme = haveProfile ? profile.getThemeHue() : -1;
407         if (newProfileTheme != Colors.profileThemeId) {
408             Logger.debug("profiles",
409                     String.format(Locale.ENGLISH, "profile theme %d → %d", Colors.profileThemeId,
410                             newProfileTheme));
411             Colors.profileThemeId = newProfileTheme;
412             profileThemeChanged();
413             // profileThemeChanged would restart the activity, so no need to reload the
414             // data sets below
415             return;
416         }
417
418         b.noProfilesLayout.setVisibility(haveProfile ? View.GONE : View.VISIBLE);
419         b.pagerLayout.setVisibility(haveProfile ? View.VISIBLE : View.VISIBLE);
420
421         mProfileListAdapter.notifyDataSetChanged();
422
423         mainModel.clearAccounts();
424         mainModel.clearTransactions();
425
426         if (haveProfile) {
427             mainModel.scheduleAccountListReload();
428             Logger.debug("transactions", "requesting list reload");
429             mainModel.scheduleTransactionListReload();
430
431             if (profile.isPostingPermitted()) {
432                 b.toolbar.setSubtitle(null);
433                 b.btnAddTransaction.show();
434             }
435             else {
436                 b.toolbar.setSubtitle(R.string.profile_subtitle_read_only);
437                 b.btnAddTransaction.hide();
438             }
439         }
440         else {
441             b.toolbar.setSubtitle(null);
442             b.btnAddTransaction.hide();
443         }
444
445         updateLastUpdateTextFromDB();
446     }
447     private void profileThemeChanged() {
448         // un-hook all observed LiveData
449         Data.removeProfileObservers(this);
450         Data.profiles.removeObservers(this);
451         Data.lastUpdateTransactionCount.removeObservers(this);
452         Data.lastUpdateAccountCount.removeObservers(this);
453         Data.lastUpdateDate.removeObservers(this);
454
455         recreate();
456     }
457     public void fabNewTransactionClicked(View view) {
458         Intent intent = new Intent(this, NewTransactionActivity.class);
459         startActivity(intent);
460         overridePendingTransition(R.anim.slide_in_up, R.anim.dummy);
461     }
462     public void markDrawerItemCurrent(int id) {
463         TextView item = b.drawerLayout.findViewById(id);
464         item.setBackgroundColor(Colors.tableRowDarkBG);
465
466         for (int i = 0; i < b.navActions.getChildCount(); i++) {
467             View view = b.navActions.getChildAt(i);
468             if (view.getId() != id) {
469                 view.setBackgroundColor(Color.TRANSPARENT);
470             }
471         }
472     }
473     public void onAccountSummaryClicked(View view) {
474         b.drawerLayout.closeDrawers();
475
476         showAccountSummaryFragment();
477     }
478     private void showAccountSummaryFragment() {
479         b.mainPager.setCurrentItem(0, true);
480         mainModel.getAccountFilter()
481                  .setValue(null);
482     }
483     public void onLatestTransactionsClicked(View view) {
484         b.drawerLayout.closeDrawers();
485
486         showTransactionsFragment(null);
487     }
488     public void showTransactionsFragment(String accName) {
489         mainModel.getAccountFilter()
490                  .setValue(accName);
491         b.mainPager.setCurrentItem(1, true);
492     }
493     public void showAccountTransactions(String accountName) {
494         mBackMeansToAccountList = true;
495         showTransactionsFragment(accountName);
496     }
497     @Override
498     public void onBackPressed() {
499         if (b.drawerLayout.isDrawerOpen(GravityCompat.START)) {
500             b.drawerLayout.closeDrawer(GravityCompat.START);
501         }
502         else {
503             if (mBackMeansToAccountList && (b.mainPager.getCurrentItem() == 1)) {
504                 mainModel.getAccountFilter()
505                          .setValue(null);
506                 showAccountSummaryFragment();
507                 mBackMeansToAccountList = false;
508             }
509             else {
510                 Logger.debug("fragments", String.format(Locale.ENGLISH, "manager stack: %d",
511                         getSupportFragmentManager().getBackStackEntryCount()));
512
513                 super.onBackPressed();
514             }
515         }
516     }
517     public void updateLastUpdateTextFromDB() {
518         if (profile == null)
519             return;
520
521         long lastUpdate = profile.getLongOption(MLDB.OPT_LAST_SCRAPE, 0L);
522
523         Logger.debug("transactions", String.format(Locale.ENGLISH, "Last update = %d", lastUpdate));
524         if (lastUpdate == 0) {
525             Data.lastUpdateDate.postValue(null);
526         }
527         else {
528             Data.lastUpdateDate.postValue(new Date(lastUpdate));
529         }
530
531         scheduleDataRetrievalIfStale(lastUpdate);
532
533     }
534     private void refreshLastUpdateInfo() {
535         final int formatFlags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_YEAR |
536                                 DateUtils.FORMAT_SHOW_TIME | DateUtils.FORMAT_NUMERIC_DATE;
537         String templateForTransactions =
538                 getResources().getString(R.string.transaction_count_summary);
539         String templateForAccounts = getResources().getString(R.string.account_count_summary);
540         Integer accountCount = Data.lastUpdateAccountCount.getValue();
541         Integer transactionCount = Data.lastUpdateTransactionCount.getValue();
542         Date lastUpdate = Data.lastUpdateDate.getValue();
543         if (lastUpdate == null) {
544             Data.lastTransactionsUpdateText.set("----");
545             Data.lastAccountsUpdateText.set("----");
546         }
547         else {
548             Data.lastTransactionsUpdateText.set(
549                     String.format(Objects.requireNonNull(Data.locale.getValue()),
550                             templateForTransactions,
551                             transactionCount == null ? 0 : transactionCount,
552                             DateUtils.formatDateTime(this, lastUpdate.getTime(), formatFlags)));
553             Data.lastAccountsUpdateText.set(
554                     String.format(Objects.requireNonNull(Data.locale.getValue()),
555                             templateForAccounts, accountCount == null ? 0 : accountCount,
556                             DateUtils.formatDateTime(this, lastUpdate.getTime(), formatFlags)));
557         }
558     }
559     public void onStopTransactionRefreshClick(View view) {
560         Logger.debug("interactive", "Cancelling transactions refresh");
561         mainModel.stopTransactionsRetrieval();
562         b.transactionListCancelDownload.setEnabled(false);
563     }
564     public void onRetrieveRunningChanged(Boolean running) {
565         if (running) {
566             b.transactionListCancelDownload.setEnabled(true);
567             ColorStateList csl = Colors.getColorStateList();
568             b.transactionListProgressBar.setIndeterminateTintList(csl);
569             b.transactionListProgressBar.setProgressTintList(csl);
570             b.transactionListProgressBar.setIndeterminate(true);
571             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
572                 b.transactionListProgressBar.setProgress(0, false);
573             }
574             else {
575                 b.transactionListProgressBar.setProgress(0);
576             }
577             b.transactionProgressLayout.setVisibility(View.VISIBLE);
578         }
579         else {
580             b.transactionProgressLayout.setVisibility(View.GONE);
581         }
582     }
583     public void onRetrieveProgress(RetrieveTransactionsTask.Progress progress) {
584         if (progress.getState() == RetrieveTransactionsTask.ProgressState.FINISHED) {
585             Logger.debug("progress", "Done");
586             b.transactionProgressLayout.setVisibility(View.GONE);
587
588             mainModel.transactionRetrievalDone();
589
590             String error = progress.getError();
591             if (error != null) {
592                 if (error.equals(RetrieveTransactionsTask.Result.ERR_JSON_PARSER_ERROR))
593                     error = getResources().getString(R.string.err_json_parser_error);
594
595                 AlertDialog.Builder builder = new AlertDialog.Builder(this);
596                 builder.setMessage(error);
597                 builder.setPositiveButton(R.string.btn_profile_options, (dialog, which) -> {
598                     Logger.debug("error", "will start profile editor");
599                     MobileLedgerProfile.startEditProfileActivity(this, profile);
600                 });
601                 builder.create()
602                        .show();
603                 return;
604             }
605
606             return;
607         }
608
609
610         b.transactionListCancelDownload.setEnabled(true);
611 //        ColorStateList csl = Colors.getColorStateList();
612 //        progressBar.setIndeterminateTintList(csl);
613 //        progressBar.setProgressTintList(csl);
614 //        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
615 //            progressBar.setProgress(0, false);
616 //        else
617 //            progressBar.setProgress(0);
618         b.transactionProgressLayout.setVisibility(View.VISIBLE);
619
620         if (progress.isIndeterminate() || (progress.getTotal() <= 0)) {
621             b.transactionListProgressBar.setIndeterminate(true);
622             Logger.debug("progress", "indeterminate");
623         }
624         else {
625             if (b.transactionListProgressBar.isIndeterminate()) {
626                 b.transactionListProgressBar.setIndeterminate(false);
627             }
628 //            Logger.debug("progress",
629 //                    String.format(Locale.US, "%d/%d", progress.getProgress(), progress.getTotal
630 //                    ()));
631             b.transactionListProgressBar.setMax(progress.getTotal());
632             // for some reason animation doesn't work - no progress is shown (stick at 0)
633             // on lineageOS 14.1 (Nougat, 7.1.2)
634             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
635                 b.transactionListProgressBar.setProgress(progress.getProgress(), false);
636             else
637                 b.transactionListProgressBar.setProgress(progress.getProgress());
638         }
639     }
640     public void fabShouldShow() {
641         if ((profile != null) && profile.isPostingPermitted() && !b.drawerLayout.isOpen())
642             fabManager.showFab();
643     }
644     @Override
645     public Context getContext() {
646         return this;
647     }
648     @Override
649     public void showManagedFab() {
650         fabShouldShow();
651     }
652     @Override
653     public void hideManagedFab() {
654         fabManager.hideFab();
655     }
656     public static class SectionsPagerAdapter extends FragmentStateAdapter {
657
658         public SectionsPagerAdapter(@NonNull FragmentActivity fragmentActivity) {
659             super(fragmentActivity);
660         }
661         @NotNull
662         @Override
663         public Fragment createFragment(int position) {
664             Logger.debug("main",
665                     String.format(Locale.ENGLISH, "Switching to fragment %d", position));
666             switch (position) {
667                 case 0:
668 //                    debug("flow", "Creating account summary fragment");
669                     return new AccountSummaryFragment();
670                 case 1:
671                     return new TransactionListFragment();
672                 default:
673                     throw new IllegalStateException(
674                             String.format("Unexpected fragment index: " + "%d", position));
675             }
676         }
677
678         @Override
679         public int getItemCount() {
680             return 2;
681         }
682     }
683 }