Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-05 17:29:18 +03:00
parent d71ee3f4d5
commit cc71c599f7
6 changed files with 315 additions and 313 deletions

View file

@ -111,6 +111,7 @@ public class MainFragment extends Fragment implements NfcAdapter.ReaderCallback,
progressBar = result.findViewById(R.id.progressBar);
progressBar.setProgressTintList(ColorStateList.valueOf(Color.DKGRAY));
RecyclerView rvCards = result.findViewById(R.id.lvCards);
rvCards.setLayoutManager(new LinearLayoutManager(getContext()));
mCardListAdapter = new CardListAdapter(getActivity().getLayoutInflater(), savedInstanceState, this);
rvCards.setAdapter(mCardListAdapter);
@ -218,7 +219,6 @@ public class MainFragment extends Fragment implements NfcAdapter.ReaderCallback,
@Override
public void onResume() {
super.onResume();
mNfcManager.onResume();
}