Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-17 Thread Nicolás Mariano Obregón
Sorry if I wasn't clear enough. I meant how did I add a new TableRow in the first place of a TableLayout. After I sent my question I realized that I could write *table.addView(row,1); *and that would do it. [?] Thanks anyway!! __ Saludos.- Nicolás Mariano Obregón

Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-17 Thread Nicolás Mariano Obregón
PS: In my code I use *table.addView(row,1); *because the 0 element is a title... __ Saludos.- Nicolás Mariano Obregón nmobre...@gmail.com http://ar.linkedin.com/in/nmobregon http://www.facebook.com/nmobregon http://www.facebook.com/nmobregon El 17 de octubre de 2011

Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-17 Thread Duygu Kahraman
Hi; maybe this is helpful for you http://developer.android.com/resources/tutorials/views/hello-tabwidget.html 2011/10/17 Nicolás Mariano Obregón nmobre...@gmail.com PS: In my code I use *table.addView(row,1); *because the 0 element is a title... __ Saludos.- Nicolás

[android-developers] Adding TableRow on top of TableLayout

2011-10-15 Thread Nicolás Mariano Obregón
Hi! I suposse this is a quite simple question, but my android-programming knowledge is simple too. Can anyone please help me on how to add TableRows on top of a TableLayout? You know... like a stack. Thanks! [?] __ Saludos.- Nicolás Mariano Obregón nmobre...@gmail.com

Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-15 Thread TreKing
2011/10/13 Nicolás Mariano Obregón nmobre...@gmail.com Can anyone please help me on how to add TableRows on top of a TableLayout? TableRows go *in* TableLayouts, not *on top*. What are you trying to do?