From bda6ef32961d30799ed115a7bbc689dbce7bc006 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Sat, 15 Dec 2018 19:31:46 +0000 Subject: [PATCH] nicer swiper spinner colors for the transaction list --- .../net/ktnx/mobileledger/TransactionListActivity.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/net/ktnx/mobileledger/TransactionListActivity.java b/app/src/main/java/net/ktnx/mobileledger/TransactionListActivity.java index 1dc5f026..c41c0053 100644 --- a/app/src/main/java/net/ktnx/mobileledger/TransactionListActivity.java +++ b/app/src/main/java/net/ktnx/mobileledger/TransactionListActivity.java @@ -95,11 +95,13 @@ public class TransactionListActivity extends AppCompatActivity { llm.setOrientation(LinearLayoutManager.VERTICAL); root.setLayoutManager(llm); - ((SwipeRefreshLayout) findViewById(R.id.transaction_swipe)).setOnRefreshListener(() -> { + swiper.setOnRefreshListener(() -> { Log.d("ui", "refreshing transactions via swipe"); update_transactions(); }); + swiper.setColorSchemeResources(R.color.colorPrimary, R.color.colorAccent); + // update_transactions(); } private void setupActionBar() { @@ -149,8 +151,7 @@ public class TransactionListActivity extends AppCompatActivity { public void onRetrieveDone(boolean success) { progressBar.setVisibility(View.GONE); - SwipeRefreshLayout srl = findViewById(R.id.transaction_swipe); - srl.setRefreshing(false); + swiper.setRefreshing(false); if (success) { MobileLedgerDatabase dbh = new MobileLedgerDatabase(this); Date now = new Date(); -- 2.39.2