文本不适合 EditText - 将其滚动到左侧
如果我将文本设置为 EditText 并且文本较大,则默认行为是文本向右滚动。我可以将其滚动到左侧吗?
EditText 8 个字符长和文本“示例文本”的示例:
正常行为:[ple text]
我想要的:[Sample t]
If I set text to my EditText and the text is bigger, the default behaviour is that the text is scrolled to right. Can I scroll it to left?
Example with EditText 8 characters long and text "Sample text":
Normal behaviour: [ple text]
What I want: [Sample t]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将光标/插入符号位置设置为 EditText 的第一个字符。您需要使用 setSelection< /a>.
Set the cursor/caret location to first character of the EditText. You need to use setSelection.