I wanted to know how to center a View between two other views (or between a view and the parent edge) using RelativeLayout.
For example, if I have the following...

How do I vertically center the Button between the ImageView and the bottom of the screen using RelativeLayout?
I'm looking for a solution where...
- the Button is not stretched in any way
- there are no nested layouts
And I'm trying to do this in the XML layout (not programmatically).