EditText hint doesn't show

2019-01-17 02:41发布

My EditText configured as follows won't show the hint:

<EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="right"
    android:hint="The hint..."
    android:scrollHorizontally="true"
    android:singleLine="true" />

It works if I set android:gravity="left" or if I remove android:scrollHorizontally and android:singleLine attributes, which is not desirable. Any suggestions?

8条回答
Lonely孤独者°
2楼-- · 2019-01-17 03:13

using android:ellipsize="end" fixed it for me Weird bug !! (but Android has a lot of these weirdo bug)

查看更多
何必那么认真
3楼-- · 2019-01-17 03:14

You need to give text color to hint

android:textColorHint="#000000"
查看更多
登录 后发表回答