插入到编辑文本中的文本被覆盖

发布于 2024-10-10 10:03:55 字数 192 浏览 1 评论 0原文

我是一个初学者,正在制作一个计算器(相当简单),但出现了以下问题:例如,当 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅一夜美梦 2024-10-17 10:03:55

当您想在旧数字旁边添加新数字时,您可能需要

  1. 获取当前在此“编辑文本”中显示的值并将其保存在字符串中,
  2. 将此旧值与您想要的新值连接起来添加到您的“编辑文本”中,
  3. 将此新的串联值设置为“编辑文本”中的新文本

:)

when you want to add a new number next to the old one, you probably need to

  1. get the value that is currently being shown in this "edit text" and save it in a string
  2. concatenate this old value with the new one that you want to add to your "edit text"
  3. set this new concatenated value as the new text in your "edit text"

:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文