Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-05 13:26:50 +03:00
parent 782e909ebd
commit d71ee3f4d5
8 changed files with 213 additions and 234 deletions

View file

@ -9,23 +9,17 @@ import android.os.Bundle;
import com.tangem.wallet.R;
public class NoExtendedLengthSupportDialog extends DialogFragment {
public static final String TAG = NoExtendedLengthSupportDialog.class.getSimpleName();
public static boolean allreadyShowed=false;
public static boolean allreadyShowed = false;
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
return new AlertDialog.Builder(getActivity())
.setIcon(R.drawable.tangem_logo_small_new)
.setTitle("Warning")
.setMessage("The NFC adapter of the device does not support extended length APDU, it's possible that some functions will not work!")
.setPositiveButton("Got it",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
NoExtendedLengthSupportDialog.allreadyShowed=true;
}
}
)
.setTitle(R.string.warning)
.setMessage(R.string.the_nfc_adapter_length_apdu)
.setPositiveButton(R.string.got_it, (dialog, whichButton) -> NoExtendedLengthSupportDialog.allreadyShowed = true)
.create();
}
@ -33,4 +27,5 @@ public class NoExtendedLengthSupportDialog extends DialogFragment {
public void onCancel(DialogInterface dialog) {
super.onCancel(dialog);
}
}
}

View file

@ -0,0 +1,23 @@
package com.tangem.presentation.dialog;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.os.Bundle;
import com.tangem.wallet.R;
public class RootFoundDialog extends DialogFragment {
public static final String TAG = RootFoundDialog.class.getSimpleName();
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
return new AlertDialog.Builder(getActivity())
.setIcon(R.drawable.tangem_logo_small_new)
.setTitle(R.string.device_is_rooted)
.setCancelable(false)
.setPositiveButton(R.string.got_it, null)
.create();
}
}