tags:

views:

37

answers:

2

How to Highlight the Layout in Android?..

A: 

I you're looking for help in determining how your layout is working, setting the background of an element can be very helpful as it shows how it is being sized.

Try something like:

android:background="#F00"
Dave Webb
A: 

The Android tool heirarchyviewer can help you view how your layout is being rendered. It will draw boxes around each layout, and show you a tree of the layout components. You can find it in your android sdk's tools folder.

Mayra