I have the following code, how do I make it so that the 3 buttons are at the bottom?
You need to ensure four things:
LinearLayout has layout_height="match_parent"LinearLayout has layout_weight="1" and layout_height="0dp"TextView has layout_weight="0"LinearLayout: android:gravity="center|bottom"Notice that fill_parent does not mean "take up all available space". However, if you use layout_height="0dp" with layout_weight="1", then a view will take up all available space (Can't get proper layout with "fill_parent").
Here is some code I quickly wrote up that uses two LinearLayouts in a similar fashion to your code.
The result looks like similar to this:
