EditText上提示不显示提示、EditText

由网友(转身丶寂寞繁华了谁。)分享简介:我的的EditText 配置如下不会显示提示:My EditText configured as follows won't show the hint: 我的的EditText 配置如下不会显示提示:

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" />

它的工作原理,如果我设置安卓重力=左如果我删除安卓scrollHorizo​​ntally 安卓SINGLELINE 属性,这是不可取的。有什么建议?

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

推荐答案

使用安卓ellipsize =结束固定它为我 奇怪的错误! (而Android有很多这样的怪人的bug)

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

阅读全文

相关推荐

最新文章