Default in Android is to center the SlidingDrawer handle, but I don't want it that way. I would like it to be in the right instead.
I did search and found one answer: How to change android slidingdrawer handle button position
The problem with this is that the whole RelativeLayout becomes the handle and therefore I cant place any buttons next to the handle as they also will open the SlidingDrawer. I also tried to make the ImageView the handle but then it just ignored the RelativeLayout.
I guess I need to extend the SlidingDrawer but I don't know how to do that :(
EDIT: I solved it in a different way. I made the handler 0px in size and uses a different button to call SlidingDrawer.open(). This is not perfect as you can't "slide" to open if you don't implement if manually, but it works.