“Beispiel für Android USSD -Code” Code-Antworten

Beispiel für Android USSD -Code

private Uri ussdToCallableUri(String ussd) {

    String uriString = "";

    if(!ussd.startsWith("tel:"))
        uriString += "tel:";

    for(char c : ussd.toCharArray()) {

        if(c == '#')
            uriString += Uri.encode("#");
        else
            uriString += c;
    }

    return Uri.parse(uriString);
}
Grieving Gecko

Beispiel für Android USSD -Code

String ussdCode = "*" + "123" + Uri.encode("#");
startActivity(new Intent("android.intent.action.CALL", Uri.parse("tel:" + ussdCode)));
Grieving Gecko

Beispiel für Android USSD -Code

String ussdCode = "*123#";
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(ussdToCallableUri(ussdCode));
try{
    startActivity(intent);
} catch (SecurityException e){
    e.printStackTrace();
}
Grieving Gecko

Ähnliche Antworten wie “Beispiel für Android USSD -Code”

Fragen ähnlich wie “Beispiel für Android USSD -Code”

Weitere verwandte Antworten zu “Beispiel für Android USSD -Code” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen