I would like to place a layout on the bottom of a LinearLayout, but I can\'t seem to get it to work. I know that I can use RelativeLayout to do this, but I should be able to
LinearLayout will just stack things as they are placed in there. Since it is vertical, it will keep placing items one after the next in a vertical manner. Can you change the android:gravity of the linearLayout and not the layout_gravity of the nested one and see if that works.
RelativeLayout of course should be the first way but you stated you didnt want to do that. Is there reason for that?