如何将编辑文本框光标开始设置到某个默认位置?
我使用可绘制的编辑文本框,其中边框几乎没有图形,就像它有两条线边框一样。问题是,如果我输入与框边缘重叠的文本。我如何在开头创建一个空间/间隙,以便我可以在距左端 1/2 个空格间隙后输入文本。
谢谢
im using a edittext box drawable where the border is little graphical like it has two line border.the thing is if i enter the text its overlapping with the edge of the box.how can i create a space/ gap in the beginning,so that i can enter the text after 1/2 spaces gap from the left end.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试此代码将光标设置到位置 3。
如果您只想在 strting 处添加空格,请尝试在代码中添加 paddingLeft 属性。
谢谢。
try this code to set cursor to position 3.
If you just want to add space at strting try adding paddingLeft attribute in your code.
Thanks.