我已经看到了很多类似的问题,但我认为这仍然有新的意义:
1)设置重力时提示文本消失
2) android:ellipsize =“start”修复了所以你可以拥有居中的提示和居中的文本
3)为什么下面的代码仍然显示居中的提示文本?
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来使您的提示和文本从框的左上角开始.