In my quest to create a “Taxman” Android application I ran into the following problem:
I want to ask the user to enter their yearly income, after which the screen will flip and their after-tax income will be displayed in a table format for all Canadian provinces. (And for the future: all US states). The problem I ran into is creating a TableRow for each Canadian province in my main.xml. There are 13 provinces and territories, so 13 is not that bad to copy & paste in the main.xml; however, as soon as I have to copy & paste more than 2 times I start cringing and nausea kicks in. Personally I think “copy & paste” should not be in the programming vocabulary. Not only that, but I have 13 provinces now, what about when I have to enter 50 states! So, I had to find a way to create these new TableRow rows programmatically inside my TableLayout layout.
A great source for code snippets and answers to Android questions is http://www.anddev.org. I’m sure if you’re dabbling with Android then you’ve already come across this site. The particular post I read to do this is this one: Dynamically add rows to TableLayout. Commenters on that post were having problems getting this to work, but after I imported all the correct classes (android.widget.TableRow.LayoutParams is an important one to use) everything worked from the first time. I forced Eclipse to find most of the classes for me.
Below is the code from anddev.org, with my changes for my Taxman Android app. I’m too lazy to do a full-out beginning-to-end tutorial for this code snippet.
First I set my constants at the top of the Activity class:
public class Activity1 extends Activity implements OnTouchListener{ int PROVINCE_Alberta = 0; int PROVINCE_BC = 1; int PROVINCE_Manitoba = 2; int PROVINCE_NewBrunswick = 3; int PROVINCE_Newfoundland = 4; int PROVINCE_Northwest = 5; int PROVINCE_NovaScotia = 6; int PROVINCE_Nunavut = 7; int PROVINCE_Ontario = 8; int PROVINCE_PEI = 9; int PROVINCE_Quebec = 10; int PROVINCE_Saskatchewan = 11; int PROVINCE_Yukon = 12; int numProvinces = 13;
There are 13 of them this time, there will be 50 of them for the States… technically this could be made into something much more malleable like an external config-type XML file.
Then in the onCreate method I created an array of String objects that will house all these provinces:
String[] provinces = new String[numProvinces]; provinces[PROVINCE_Alberta] = "Alberta"; provinces[PROVINCE_BC] = "British Columbia"; provinces[PROVINCE_Manitoba] = "Manitoba"; provinces[PROVINCE_NewBrunswick] = "New Brunswick"; provinces[PROVINCE_Newfoundland] = "Newfoundland and Labrador"; provinces[PROVINCE_Northwest] = "Northwest Territories"; provinces[PROVINCE_NovaScotia] = "Nova Scotia"; provinces[PROVINCE_Nunavut] = "Nunavut"; provinces[PROVINCE_Ontario] = "Ontario"; provinces[PROVINCE_PEI] = "Prince Edward Island"; provinces[PROVINCE_Quebec] = "Quebec"; provinces[PROVINCE_Saskatchewan] = "Saskatchewan"; provinces[PROVINCE_Yukon] = "Yukon";
And right underneath that I create a TableRow for each item in the array provinces:
// Get the TableLayout TableLayout tl = (TableLayout) findViewById(R.id.maintable); // Go through each item in the array for (int current = 0; current < numProvinces; current++) { // Create a TableRow and give it an ID TableRow tr = new TableRow(this); tr.setId(100+current); tr.setLayoutParams(new LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); // Create a TextView to house the name of the province TextView labelTV = new TextView(this); labelTV.setId(200+current); labelTV.setText(provinces[current]); labelTV.setTextColor(Color.BLACK); labelTV.setLayoutParams(new LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); tr.addView(labelTV); // Create a TextView to house the value of the after-tax income TextView valueTV = new TextView(this); valueTV.setId(current); valueTV.setText("$0"); valueTV.setTextColor(Color.BLACK); valueTV.setLayoutParams(new LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); tr.addView(valueTV); // Add the TableRow to the TableLayout tl.addView(tr, new TableLayout.LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); }
The main.xml contains the following for the TableLayout:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:stretchColumns="0,1" android:id="@+id/maintable" > </TableLayout>
And here is the final result:
So far I have the Ontario taxes working :). If you make $50,000 in Ontario, you’d be taking home $38,285.53.

September 8, 2009 at 08:58
This is close to what I am looking for!
I have the table building dynamically, called from onCreate() … my problem is that the table shows MONTH based figures with a Spinner above it. You can choose a new month from the Spinner and the table ‘is supposed to’ update the the selected month’s data.
If you know… could you point me in the direction to be able to do this? I don’t under stand how to clear the table and draw a new one programatically in it’s place each time the month is changed…
Obviously, I’m a little new to Android. I’m a little disappointed at how difficult tables have been so far. I eventually want to populate the table from a sql query result set, but I’ll get to that later once the testing works!
Thanks!
Steve
March 29, 2010 at 07:41
hello,
i have tried this in my code for the demo of dynamically adding row to a tablelayout as such it may be very much helpful in my project.
But i cant find anything on screen when i run it.
pls suggest and make me out……
Thanx in advance
May 26, 2010 at 05:14
Paresh Mayani,
I have the same problem, and then I remove “valueTV.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
” from each textview, something is displayed.
Try it!
July 2, 2010 at 22:14
macaufuns,
that works for me too! I wonder why?
July 13, 2010 at 10:53
I’ve got a force close when I tried to add the values to the table layout.. Anyone know why ? I’vent changed any part of the code.
July 13, 2010 at 10:58
Nevermind… I I’ve put the wrong xml on the contentView
July 13, 2010 at 10:58
Thanks by the way, you’ve helped me a lot
August 21, 2010 at 04:09
macaufuns: I had the same problem when i imported a wrong LayoutParams class. Try importing android.widget.TableRow.LayoutParams
br, Laszlo
December 31, 2010 at 02:55
Good Tutorial !
Initially I got plain black screen ie., nothing.
Found out at last. Text color has been set to black and background colour hasnt been set.
labelTV.setTextColor(Color.WHITE);
I think you can see it now : )
January 7, 2011 at 00:15
Hi, is it possible to hv this at the bottom?
public boolean onTouch(View arg0, MotionEvent arg1) {
// TODO Auto-generated method stub
return false;
}
cos if i wan to make it to be able to scroll, is there anything that i need to add on?
February 9, 2011 at 01:29
Hi basically we dont need to set layout for textView controls in the above example .
Just remove that one ant tried it works fine .
February 24, 2011 at 02:35
Hi,In my project also i used same logic, but i have a lot of data(content) to show in the form of table row.so it takes too much time to load content and show in the page.please send suggestion to my mail how to improve my performance.
krishnaprasadnagamalla@gmail.com
thank u.
March 10, 2011 at 17:02
This is a great post. However, is it not possible to just create a table_row.xml that defines a single TableRow, and then inflate that and just populate it, as opposed to having to write out all the attributes in Java?
April 8, 2011 at 04:24
I use above code for tablelayout I got force close when run the application. I also debug code it go in catch block from sentence table.addView(tableRow);
Help me. Thanks in advance.
October 3, 2011 at 04:51
In regards to the solution provided for the table row to show up (i.e. by removing the setLayoutParams for the TextView), how would i do it, if i have a long line of text.
I tried removing the text wrapping, but then i lose part of my text too. Can anyone help me with this?
For my entire text to show up, i wud need layoutparams to be wrap_content for my TextView
October 10, 2011 at 19:34
hi, i try your example on android 3.0, but i don’t textvie on screen. when, i comment code line:
labelTV.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
and
valueTV.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
textviews is show, how do use textview.setLayoutParams
thanks help me!
June 5, 2012 at 10:20
Dhara! I was having same problem, too. Do not forget to initialize tablelayout by tl = (TableLayout) findviewbyid(r.id.blabla)…
August 2, 2012 at 13:41
Awesome buddy! Thanks… You rock!
February 28, 2013 at 08:00
Great and thanks a lot for this favour…..
You Rock Man….
Astix Android Team!