Lista wszystkich dodatków zamiaru


251

Z powodów debugowania chcę wymienić wszystkie dodatki (i ich wartości) zamiaru. Teraz zdobycie kluczy nie stanowi problemu

Set<String> keys = intent.getExtras().keySet();

ale uzyskiwanie wartości kluczy jest dla mnie jedną, ponieważ niektóre wartości są ciągami, niektóre są logiczne ... Jak mogę uzyskać wartości w pętli (pętlę między kluczami) i zapisać wartości w pliku dziennika? Dzięki za podpowiedź!

Odpowiedzi:


467

Oto, czego użyłem, aby uzyskać informacje na temat nieudokumentowanej (innej firmy) intencji:

Bundle bundle = intent.getExtras();
if (bundle != null) {
    for (String key : bundle.keySet()) {
        Log.e(TAG, key + " : " + (bundle.get(key) != null ? bundle.get(key) : "NULL"));
    }
}

Sprawdź, czy bundleprzed pętlą jest pusta.


2
Właśnie dowiedziałem się o aplikacji Intent Intercept na Androida . To też działa.
Vinayak

1
if (bundle == null) { return; }FTW
Matyas,

23
Bundle bundle = data.getExtras();Gdzie datajest zamiar. Dla początkujących Androida.
ConquerorsHaki,

2
Przed zalogowaniem należy sprawdzić, czy wartość jest równa null, jeśli tak value = "null".
Sebastian Kreft,

Dzięki za to! Szukałem sposobu na sprawdzenie wszystkich kluczy, które zostały dostarczone w tej nieudokumentowanej aplikacji iTracing, do sterowania moim telefonem za pomocą taniego przycisku Bluetooth. Działa jak urok!
Shane Smiskol

111

W ten sposób definiuję metodę użyteczności do zrzucenia wszystkich dodatków zamiaru.

import java.util.Iterator;
import java.util.Set;
import android.os.Bundle;


public static void dumpIntent(Intent i){

    Bundle bundle = i.getExtras();
    if (bundle != null) {
        Set<String> keys = bundle.keySet();
        Iterator<String> it = keys.iterator();
        Log.e(LOG_TAG,"Dumping Intent start");
        while (it.hasNext()) {
            String key = it.next();
            Log.e(LOG_TAG,"[" + key + "=" + bundle.get(key)+"]");
        }
        Log.e(LOG_TAG,"Dumping Intent end");
    }
}

8
Dzięki! Teraz, jeśli tylko zespół z Androidem zacznie wdrażać przydatne przesłonięcia .toString w ten sposób.
Jim Vitek

37

Możesz to zrobić w jednym wierszu kodu:

Log.d("intent URI", intent.toUri(0));

Wyprowadza coś takiego:

"#Intent; action = android.intent.action.MAIN; category = android.intent.category.LAUNCHER; launchFlags = 0x10a00000; component = com.mydomain.myapp / .StartActivity; sourceBounds = 12% 20870% 20276% 201167; l .profile = 0; koniec "

Na końcu tego ciągu (część, którą pogrubiłem) możesz znaleźć listę dodatków (tylko jeden dodatkowy w tym przykładzie).

Jest to zgodne z dokumentacją toUri : „ Identyfikator URI zawiera dane zamiaru jako podstawowy identyfikator URI, z dodatkowym fragmentem opisującym akcję, kategorie, typ, flagi, pakiet, komponent i dodatki”.


3
Jeśli chcesz po prostu debugować i zobaczyć, jaka jest zawartość intencji, jest to najlepsza opcja. Dziękuję bardzo
Shyri,

To powinna być zaakceptowana odpowiedź. Idealny do debugowania dziennika!
Ethan Arnold

12
private TextView tv;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    tv = new TextView(this);
    tv.setText("Extras: \n\r");

    setContentView(tv);

    StringBuilder str = new StringBuilder();
    Bundle bundle = getIntent().getExtras();
    if (bundle != null) {
        Set<String> keys = bundle.keySet();
        Iterator<String> it = keys.iterator();
        while (it.hasNext()) {
            String key = it.next();
            str.append(key);
            str.append(":");
            str.append(bundle.get(key));
            str.append("\n\r");
        }
        tv.setText(str.toString());
    }
}

8

Metoda get (klucz ciągu) pakietu zwraca obiekt. Najlepiej jest obrócić zestaw kluczy, wywołując get (String) na każdym kluczu i używając toString () na Object, aby je wyprowadzić. Działa to najlepiej dla prymitywów, ale możesz napotkać problemy z obiektami, które nie implementują toString ().


4
Bundle extras = getIntent().getExtras();
Set<String> ks = extras.keySet();
Iterator<String> iterator = ks.iterator();
while (iterator.hasNext()) {
    Log.d("KEY", iterator.next());
}

1
for (String string: extras.keySet ()) {Log.d (LOG_TAG, key + ":" + extras.get (key)); }
Defuera,

4

Chciałem znaleźć sposób, aby wypisać zawartość intencji do dziennika i móc ją łatwo odczytać, więc oto, co wymyśliłem. Stworzyłem LogUtilklasę, a następnie wziąłem dumpIntent()metodę @Pratik i nieco ją zmodyfikowałem. Oto jak to wszystko wygląda:

public class LogUtil {

    private static final String TAG = "IntentDump";

    public static void dumpIntent(Intent i){
        Bundle bundle = i.getExtras();
        if (bundle != null) {
            Set<String> keys = bundle.keySet();

            StringBuilder stringBuilder = new StringBuilder();
            stringBuilder.append("IntentDump \n\r");
            stringBuilder.append("-------------------------------------------------------------\n\r");

            for (String key : keys) {
                stringBuilder.append(key).append("=").append(bundle.get(key)).append("\n\r");
            }

            stringBuilder.append("-------------------------------------------------------------\n\r");
            Log.i(TAG, stringBuilder.toString());
        }
    }
}

Mam nadzieję, że to komuś pomoże!


2

Możesz użyć, for (String key : keys) { Object o = get(key);aby zwrócić obiekt, wywołać getClass().getName()go, aby uzyskać typ, a następnie wykonać zestaw typów if name.equals („String”), aby ustalić, którą metodę powinieneś wywołać, aby uzyskać wartość ?


1

Zauważyłem w źródle Androida, że ​​prawie każda operacja zmusza pakiet do rozpakowywania danych. Jeśli więc (tak jak ja) musisz to robić często w celu debugowania, bardzo szybko wpisz poniżej:

Bundle extras = getIntent().getExtras();
extras.isEmpty(); // unparcel
System.out.println(extras);

0

Przepraszam, jeśli jest to zbyt szczegółowe lub spóźnione, ale to był jedyny sposób, w jaki mogłem znaleźć rozwiązanie. Najbardziej skomplikowanym czynnikiem był fakt, że java nie ma funkcji przekazywania przez referencje, więc metody get --- Extra wymagają wartości domyślnej do zwrócenia i nie mogą modyfikować wartości boolowskiej, aby stwierdzić, czy wartość domyślna jest zwracana przypadkowo, lub ponieważ wyniki nie były korzystne. W tym celu fajniej byłoby, gdyby metoda zgłosiła wyjątek, niż gdyby zwróciła wartość domyślną.

Moje informacje znalazłem tutaj: Dokumentacja intencji Androida .

    //substitute your own intent here
    Intent intent = new Intent();
    intent.putExtra("first", "hello");
    intent.putExtra("second", 1);
    intent.putExtra("third", true);
    intent.putExtra("fourth", 1.01);
    // convert the set to a string array

Ustaw dokumentację

    String[] anArray = {};
    Set<String> extras1 = (Set<String>) intent.getExtras().keySet();
    String[] extras = (String[]) extras1.toArray(anArray);
    // an arraylist to hold all of the strings
    // rather than putting strings in here, you could display them
    ArrayList<String> endResult = new ArrayList<String>();
    for (int i=0; i<extras.length; i++) {
        //try using as a String
        String aString = intent.getStringExtra(extras[i]);
        // is a string, because the default return value for a non-string is null
        if (aString != null) {
            endResult.add(extras[i] + " : " + aString);
        }
        // not a string
        else {
            // try the next data type, int
            int anInt = intent.getIntExtra(extras[i], 0);
            // is the default value signifying that either it is not an int or that it happens to be 0 
            if (anInt == 0) {
                // is an int value that happens to be 0, the same as the default value
                if (intent.getIntExtra(extras[i], 1) != 1) {
                    endResult.add(extras[i] + " : " + Integer.toString(anInt));
                }
                // not an int value
                // try double (also works for float)
                else {
                    double aDouble = intent.getDoubleExtra(extras[i], 0.0);
                    // is the same as the default value, but does not necessarily mean that it is not double
                    if (aDouble == 0.0) {
                        // just happens that it was 0.0 and is a double
                        if (intent.getDoubleExtra(extras[i], 1.0) != 1.0) {
                            endResult.add(extras[i] + " : " + Double.toString(aDouble));
                        }
                        // keep looking...
                        else {
                            // lastly check for boolean
                            boolean aBool = intent.getBooleanExtra(extras[i], false);
                            // same as default, but not necessarily not a bool (still could be a bool)
                            if (aBool == false) {
                                // it is a bool!
                                if (intent.getBooleanExtra(extras[i], true) != true) {
                                    endResult.add(extras[i] + " : " + Boolean.toString(aBool));
                                }
                                else {
                                    //well, the road ends here unless you want to add some more data types
                                }
                            }
                            // it is a bool
                            else {
                                endResult.add(extras[i] + " : " + Boolean.toString(aBool));
                            }
                        }
                    }
                    // is a double
                    else {
                        endResult.add(extras[i] + " : " + Double.toString(aDouble));
                    }
                }
            }
            // is an int value
            else {
                endResult.add(extras[i] + " : " + Integer.toString(anInt));
            }
        }
    }
    // to display at the end
    for (int i=0; i<endResult.size(); i++) {
        Toast.makeText(this, endResult.get(i), Toast.LENGTH_SHORT).show();
    }

Nie chcesz pisać tak dużo kodu, aby wykonać tę prostą czynność, chyba że chcesz tak bardzo skomplikować swój kod, że na pewno nigdy nie będziesz w stanie wykonać aktualizacji aplikacji. Top 2 odpowiedzi robi to przy znacznie mniejszym kodzie i przy użyciu Logu, co jest lepsze niż Toast dla takich zastosowań
Louis CAD

0

Wersja narzędziowa Pratik firmy Kotlin, która zrzuca wszystkie dodatki zamiaru:

fun dumpIntent(intent: Intent) {

    val bundle: Bundle = intent.extras ?: return

    val keys = bundle.keySet()
    val it = keys.iterator()

    Log.d(TAG, "Dumping intent start")

    while (it.hasNext()) {
        val key = it.next()
        Log.d(TAG,"[" + key + "=" + bundle.get(key)+"]");
    }

    Log.d(TAG, "Dumping intent finish")

}

1
Byłoby łatwiejsze w użyciufor (key in bundle.keySet())
DDoSolitary

-2

Jeśli do debugowania wszystko, czego potrzebujesz, to ciąg znaków (coś, co sugeruje OP, ale nie zostało to wyraźnie określone), po prostu użyj toStringdodatków Bundle:

intent.getExtras().toString()

Zwraca ciąg taki jak:

Bundle[{key1=value1, key2=value2, key3=value3}]

Dokumentacja: Bundle.toString () (niestety jest to domyślny Object.toString()javadoc i jako taki całkiem bezużyteczny tutaj).


4
Gdy spróbowałem, zwraca: Pakiet [mParcelledData.dataSize = 480]
ToddH
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.