I cant put a textview above my buttons without having my buttons move...How can I fix this?
Been stuck on this for 4 hours...Which is sad because I\'m t
A simple and quick solution could be to use two layouts: keep the RelativeLayout
and embed it in a vertical LinearLayout
. Then you can just add the TextView
to the LinearLayout
before the RelativeLayout
.
Caution: using multiple layers of Layouts can hurt performance, so don't overdo it. Two layouts shouldn't hurt though.