Using xml Syntax Highlighting
- <RelativeLayout>
- // Some stuff
- <RelativeLayout android:id="@+id/inner">
- // Some stuff
- </RelativeLayout>
- <Button ... android:layout_below="@id/inner".../>
- </RelativeLayout>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
That is, I want my Button to be placed below my inner RelativeLayout. Instead it's positioned at the top of the activity. Why is that?

