My EditText configured as follows won\'t show the hint:
EditText
I wanted my single-line EditText box to scroll but keep the hint on the right also. I had the same issue and got the hint to stick by keeping gravity="right", and setting singleLine="true" and ellipsize="end".
gravity="right"
singleLine="true"
ellipsize="end"