I am trying to dynamically add and remove rows from a TableLayout.
The layout is defined in an xml file.
I am able to successfully remove a row, but when I c
Use hierarchyviewer
(in your SDK tools/
directory) to determine if the row is truly not being added, or is being added but some layout parameters are messed up and so it is not appearing on-screen.
public int indexOfChild (View child)
public View getChildAt (int index)
Both methods provided by TableLayout. ;-)