View canvas / bitmap on the fly while debugging in eclipse

Is there any way to debug canvas / bitmaps on Eclipse? I was interested to know what the current canvas / bitmap looks like when I set a breakpoint on a specific line.

+7
android eclipse bitmap android-canvas
source share
1 answer

Viewing bitmaps during debugging is now possible (albeit with Android Studio).

From the notes for version 0.8.7 (August 21, 2014)

Bitmap in the debugger

During the debugging process, you can right-click on the variables in the application that are of the Bitmap type and invoke the View Bitmap:

enter image description here

Then, the associated data from the debugging process will be obtained and a bitmap image in place in the debugger.

enter image description here

+6
source share

All Articles