]> git.ktnx.net Git - mobile-ledger.git/commitdiff
comment-out the account list options menu
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Fri, 19 Apr 2019 17:03:00 +0000 (20:03 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Fri, 19 Apr 2019 20:56:43 +0000 (23:56 +0300)
not used since long, not sure if the account hiding will be
resurrected at some point

app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryFragment.java

index 362dadb9658c1d8a841c9ba55bf2d6bc49f01083..d75577ff3d8f94c26f82a2493a960242d9605a78 100644 (file)
 package net.ktnx.mobileledger.ui.account_summary;
 
 import android.content.Context;
-import android.content.SharedPreferences;
 import android.os.Bundle;
-import android.preference.PreferenceManager;
 import android.view.LayoutInflater;
-import android.view.Menu;
-import android.view.MenuInflater;
-import android.view.MenuItem;
 import android.view.View;
 import android.view.ViewGroup;
 
@@ -44,14 +39,15 @@ import androidx.recyclerview.widget.DividerItemDecoration;
 import androidx.recyclerview.widget.LinearLayoutManager;
 import androidx.recyclerview.widget.RecyclerView;
 
-import static net.ktnx.mobileledger.ui.activity.SettingsActivity.PREF_KEY_SHOW_ONLY_STARRED_ACCOUNTS;
 import static net.ktnx.mobileledger.utils.Logger.debug;
 
 public class AccountSummaryFragment extends MobileLedgerListFragment {
 
-    private MenuItem mShowOnlyStarred;
     public AccountSummaryAdapter modelAdapter;
+/*
+    private MenuItem mShowOnlyStarred;
     private Menu optMenu;
+*/
     private FloatingActionButton fab;
     @Override
     public void onCreate(@Nullable Bundle savedInstanceState) {
@@ -147,11 +143,7 @@ public class AccountSummaryFragment extends MobileLedgerListFragment {
         Data.accounts.addObserver(
                 (o, arg) -> mActivity.runOnUiThread(() -> modelAdapter.notifyDataSetChanged()));
     }
-    private void update_account_table() {
-        if (this.getContext() == null) return;
-
-        AccountSummaryViewModel.scheduleAccountListReload();
-    }
+/*
     void stopSelection() {
         modelAdapter.stopSelection();
         if (optMenu != null) {
@@ -218,4 +210,5 @@ public class AccountSummaryFragment extends MobileLedgerListFragment {
             return true;
         });
     }
+*/
 }