无论如何,有没有办法让 EditText 在 EditText 的左上角开始输入?
我有一个具有以下属性的 EditText
:
android:minLines="3"
但是,当我开始键入时,它会在 EditText
的中间键入。
有没有办法让它在 EditText
区域的左上角开始输入?
I have an EditText
with the property:
android:minLines="3"
However, when I start typing, it types in the middle of the EditText
.
Is there any way to get this to start typing at the top left of the EditText
area?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将
android:gravity="top|left"
添加到布局 XML 文件中的EditText
中。Add
android:gravity="top|left"
to theEditText
in the layout XML file.只需插入
您的 EditText 即可。
Just insert
into your EditText.
android:gravity="start"
会将其放在左上角。android:gravity="start"
would put it to the top left.这会对你有所帮助。试试这个编辑文本......
This will help you. Try this EditText....