Skip to content Skip to sidebar Skip to footer

Android Eclipse Debugging: Getting Intermediate Values

Is there any way to get the eclipse debugger to report the intermediate return values of the functional subterms of a complex android expression without declaring variables for eve

Solution 1:

I finally found an easy way to do this:

  1. Go to eclipse debug view (Widow->Open Perspective->Debug)
  2. Click on the expressions tab (Top right mini-widow, 1 of 3 tabs Variables, Breakpoints, Expressions)
  3. Enter the value of your function or variable or whatever, click on it and the resulting expression will be displayed.

Note: If the tab "Expressions" is not in the upper right window then right click on one of the variabls in the "Variables" tab and click on the "Watch" menu entry and the "Expressions" tab will appear.

Using Helios Service Release 2

Post a Comment for "Android Eclipse Debugging: Getting Intermediate Values"