How to split three columns using linear layout in Android

Can someone tell me how to split three columns using linear layout in Android?

+4
source share
2 answers

http://developer.android.com/resources/tutorials/views/index.html

see first example, divide by 3 instead of 4.

+5
source

Simple, just add android:layout_weight="1" to all the children. This is a simple version if you do not want to do something more complicated, of course.

+6
source

All Articles