[android-developers] Re: How to display border lines for TableLayout

2009-03-13 Thread Romain Guy
TableLayout is, as its name suggests, a layout. Nothing more. It's not a table widget. If you want borders, you'll have to draw them with the widgets you put in the tablelayout's cells. On Fri, Mar 13, 2009 at 2:18 AM, neuzou neu...@gmail.com wrote: Hi:   everybody, Android developer guide

[android-developers] Re: How to display border lines for TableLayout

2009-03-13 Thread Taenam,Kim
Hi there, How about making a custom ViewGroup that extends TableLayout then override the paint method. In the overrided method 1. you may get all of views in the layout to get view's bounds area 2. draw rectangle to express the border of view I didn't try this, but it makes sense. On