插入到编辑文本中的文本被覆盖
我是一个初学者,正在制作一个计算器(相当简单),但出现了以下问题:例如,当 Cline 在“1”按钮中时,他在 EditText 中输入了这个数字,但如果您再次单击,该数字将被覆盖根据需要插入他的一侧。如何将这些数字并排放置而不覆盖已经存在的数字?
注意:按钮等的布局我是在.xml中做的,所以我没有使用原生Android的键盘。
谢谢!
I'm a beginner and am making a calculator (fairly easy), but it's happening the following problem: When Cline in "1" button for example, he enters this number in the EditText, but if you click again the number is overwritten instead of the inserted his side as desired. How do the numbers were placed side by side without overwriting those already there?
Note: The layout of buttons and etc. I did in. XML, so I'm not using the keyboard native Android.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您想在旧数字旁边添加新数字时,您可能需要
:)
when you want to add a new number next to the old one, you probably need to
:)