如何将 SQLite (Android) 中某一列中的所有值计算为 textview 的新变量?

发布于 2024-12-11 05:35:39 字数 215 浏览 0 评论 0原文

我的数据库接收账单(姓名、到期日期、账单金额)并将它们添加到一行中。所以现在我用不同数量的虚拟账单填充 5 行。我想做的是将输入到文本视图中的所有账单的总数合并起来。

因此,如果我的 row1 账单是 50.00 美元,row2 账单是 25.00 美元,我如何将它们两者相加并将总计(75.00 美元)连接到文本视图,每次添加新账单或减去旧账单时该文本视图都会自行更新?

提前致谢!

My database takes in a bill (name, date due, amount of bill) and adds them to a row. So now I populate 5 rows with dummy bills at varying amounts. What I'm trying to do is combine the total of all bills entered into a textview.

So if I row1 bill is $50.00 and row2 bill is $25.00, how can I add them both and connect the total ($75.00) to a textview that will update itself each time a new bill is added or an old bill is subtracted?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱的十字路口 2024-12-18 05:35:39

您应该在表上使用简单的SELECT SUM(ammount) FROM table,并在每次添加新行时进行更新。

You should use a simple SELECT SUM(ammount) FROM table on your table, and make that update every time a new row is added.

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