]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryFragment.java
whitespace
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / account_summary / AccountSummaryFragment.java
index e6ba48fb05e5b7bb2a6e8e32bbe8a60c64adf1d2..bb484929d9f221236bde6b05209cc5b07f5c25d4 100644 (file)
@@ -42,7 +42,6 @@ import androidx.recyclerview.widget.RecyclerView;
 import static net.ktnx.mobileledger.utils.Logger.debug;
 
 public class AccountSummaryFragment extends MobileLedgerListFragment {
-
     public AccountSummaryAdapter modelAdapter;
     /*
         private MenuItem mShowOnlyStarred;
@@ -89,41 +88,6 @@ public class AccountSummaryFragment extends MobileLedgerListFragment {
 
         fab = mActivity.findViewById(R.id.btn_add_transaction);
 
-//        root.addOnItemTouchListener(new RecyclerItemListener(mActivity, root,
-//                new RecyclerItemListener.RecyclerTouchListener() {
-//                    @Override
-//                    public void onClickItem(View v, int position) {
-//                        debug("value", String.format("item %d clicked", position));
-//                        if (modelAdapter.isSelectionActive()) {
-//                            modelAdapter.selectItem(position);
-//                        }
-//                        else {
-//                            List<LedgerAccount> accounts = Data.accounts.get();
-//                            if (accounts != null) {
-//                                LedgerAccount account = accounts.get(position);
-//
-//                                mActivity.showAccountTransactions(account);
-//                            }
-//                        }
-//                    }
-//
-//                    @Override
-//                    public void onLongClickItem(View v, int position) {
-//                        debug("value", String.format("item %d long-clicked", position));
-//                        modelAdapter.startSelection();
-//                        if (optMenu != null) {
-//                            optMenu.findItem(R.id.menu_acc_summary_cancel_selection)
-//                                    .setVisible(true);
-//                            optMenu.findItem(R.id.menu_acc_summary_confirm_selection)
-//                                    .setVisible(true);
-//                            optMenu.findItem(R.id.menu_acc_summary_only_starred).setVisible(false);
-//                        }
-//                        {
-//                            if (fab != null) fab.hide();
-//                        }
-//                    }
-//                }));
-
         mActivity.fabShouldShow();
 
         manageFabOnScroll();
@@ -132,7 +96,7 @@ public class AccountSummaryFragment extends MobileLedgerListFragment {
         Colors.themeWatch.observe(this, this::themeChanged);
         swiper.setOnRefreshListener(() -> {
             debug("ui", "refreshing accounts via swipe");
-            mActivity.scheduleTransactionListRetrieval();
+            Data.scheduleTransactionListRetrieval(mActivity);
         });
 
         Data.accounts.addObserver(