I have access to the full logcat/DDMS output of an app in operation, as well as the source code.
If I see something like (taken from OpenSudoku)
03-11 20:38:28.110: I/ActivityManager(175): Starting: Intent { cmp=cz.romario.opensudoku/.gui.SudokuListActivity (has extras) } from pid 20367
how can I find out (from the intent information) what launched that particular intent. I understand that the cmp=
tells which activity was launched, and from that information I can find the java source file of that particular activity, but I want to find in the (I think) layout which button or action made the call to that activity, and therefore created the intent.
It should be noted that I have the ability to see when a particular button is pressed, but I want to be able to confirm that this intent is related to said button press.