How to fix my TableLayout and TableRow into specific positions dynamically?

Set the layout weight of each textview to 1 and the layout width to 0dp. That will cause them to split the available space equally. You could use layout gravity left, center and right as appropriate to further ensure maximum separation.

Up vote 0 down vote favorite share g+ share fb share tw.

I'm having problems setting up my TableRow with some TextViews in TableLayout dynamically. I have two pictures, one is my current situation shown, and the other is my mockup, expected situation (the goal which I need to achieve). I do not have any XML layouts; All of these are created programmatically, which is also something I need to achieve.

The snapshots shown are for a High Score screen, where I get a list of players with high scores, and display them altogether in a TableLayout. I'm just having trouble with the row/column positions. Here's my code: public void onResume() { super.onResume(); //============================================= TextView number = new TextView(this); number.

SetText("1"); TextView place = new TextView(this); place. SetText("4th"); TextView testScore = new TextView(this); testScore. SetText("113489"); table = new TableLayout(this); //rows = new Stack(); TableRow row = new TableRow(this); row.

AddView(number); row. AddView(place); row. AddView(testScore); table.

AddView(row); this. SetContentView(table); } If anyone knows how I should change my code from the Current Situation to the mockup Expected Situation, I gladly appreciate it. If I'm doing something wrong, please post a comment.

Thanks in advance. Java android game-development tablelayout tablerow link|improve this question asked 22 mins agotom_mai781013108.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions