android – EditText提示随着重力消失

前端之家收集整理的这篇文章主要介绍了android – EditText提示随着重力消失前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经看到了很多类似的问题,但我认为这仍然有新的意义:
1)设置重力时提示文本消失
2) android:ellipsize =“start”修复了所以你可以拥有居中的提示和居中的文本
3)为什么下面的代码仍然显示居中的提示文本?
<EditText
    android:id="@+id/details"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:hint="use this area to provide specific identification information including approximate size,vessel name and registration numbers if available"
    android:background="@android:drawable/editBox_background"
    android:layout_below="@id/details_title"
    />

是因为fill_parent而不是wrap_content?我想也许是因为这个暗示是多线的,但我缩短了它,它仍然出现并且居中.这是我和其他需要android的其他EditTexts之间的唯一区别:ellipsize =“start”才能正确显示.它只是一个错误吗?

解决方法

您需要使用android:gravity =“top”而不是center来使您的提示和文本从框的左上角开始.
原文链接:https://www.f2er.com/android/318171.html

猜你在找的Android相关文章