如何将 SQLite (Android) 中某一列中的所有值计算为 textview 的新变量?
我的数据库接收账单(姓名、到期日期、账单金额)并将它们添加到一行中。所以现在我用不同数量的虚拟账单填充 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在表上使用简单的
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.