I have a FrameLayout with a vertical LinearLayout inside. I have an ImageView that I want to sit at the very bottom of my layout. I'm not sure how to do this. I added it as the last element in my LinearLayout but it's not fixed to the bottom. How can I achieve this?
|
feedback
|
|
Please post your layout code. I highly recommend not using RelativeLayout, for a number of reasons. usually there is some other component of your view that you'd like to take up the rest of the space, and if you give that layout_weight, as mentioned in another answer, that will solve your problem. As an example, this will always put what you want at the bottom:
| |||||||||
feedback
|
|
Try this:
| |||||||||
feedback
|
|
Why are you using a LinearLayout?? You could just use a RelativeLayout and do what Eng Fouad said. But, if you really want to use a LinearLayout, you can use android:layout_weight to make the rest of the views take up the leftover space so your last view is forced to the bottom. Maybe even add a dummy view that simply takes up all the space before the last view and shows an empty background or something like that. | |||
|
feedback
|
|
You have to use a Relativelayout.
| ||||
|
feedback
|