I have a table row defined in XML file.
It contains 3 `LinearLayout’ one on top of the other:
I would like to get this look:
|-------------------------------|
| |
| a |
| |
| |
|-------------------------------|
| |
| b |
|-------------------------------|
| |
| c |
|-------------------------------|
The “problem” is that the LinearLayout “a” might expand and be at different heights while “b” and “c” are always in the same height.
I would to find the maximum height of the LinearLayout‘s and to enforce this height to be the height of all the other LinearLayout‘s too, so I will get this look for each row:
|-------------------------------|
| |
| a |
| |
| |
|-------------------------------|
| |
| b |
| |
| |
|-------------------------------|
| |
| c |
| |
| |
|-------------------------------|
I tried using android:layout_weight with no success…
Any ideas?
I tried to implement this in one example.
Here is what I did :
I used the textview in the first layout to show that it works as what you need.
You can also fixed the height of the layout b & c to make them of fixed height and vary layout a by setting layout_height:wrap_content
You can now customized it according to your need.