Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-07 18:10:59 +03:00
parent f7a711fc7b
commit f6c5eb6828
7 changed files with 32 additions and 29 deletions

View file

@ -126,15 +126,15 @@ public class PurgeActivity extends AppCompatActivity implements NfcAdapter.Reade
MainActivity.commonInit(getApplicationContext());
mCard = new TangemCard(getIntent().getStringExtra("UID"));
mCard.LoadFromBundle(getIntent().getExtras().getBundle("Card"));
TextView tvCardID = findViewById(R.id.tvCardID);
progressBar = findViewById(R.id.progressBar);
tvCardID.setText(mCard.getCIDDescription());
progressBar.setProgressTintList(ColorStateList.valueOf(Color.DKGRAY));
progressBar.setVisibility(View.INVISIBLE);
mCard = new TangemCard(getIntent().getStringExtra("UID"));
mCard.LoadFromBundle(getIntent().getExtras().getBundle("Card"));
}
@Override