How do I center the hint text within an EditText in Android?

后端 未结 14 1574
走了就别回头了
走了就别回头了 2020-12-05 12:54

I need to center the Hint text within an EditText in Android. How do I do this?

14条回答
  •  遥遥无期
    2020-12-05 13:05

    In order for centering of hint text to work with EditText you have to make sure android:ellipsize="start" is defined. I don't know why this makes it work, but it does.

    Example pulled from personal code:

    
    

提交回复
热议问题