コード例 #1
0
  private void initContent() {
    mCardView.setImageBitmap(mCard.getRepresentImg());

    try {
      mCardAID.setText(mCard.getAid());
      mCardIssur.setText(mCard.getIssuer());
      mCardPan.setText(mCard.getPan());
      mCardExpriyDate.setText(mCard.getExpiryMonth() + " / " + mCard.getExpiryYear());
      mCardInfo.setText(mCard.getDisplayContents());
    } catch (Exception e) {
      Log.e(TAG, "No card information!");
    }
  }