数据库更新后选项卡中的视图未显示

发布于 2024-10-17 21:35:49 字数 250 浏览 2 评论 0原文

我在 Android 应用程序中使用两个选项卡。

在选项卡 A 中,用户输入一些值,并且数据库根据输入的值进行更新。

在选项卡 B 中,我尝试使用 TextViews 显示数据库的更新值。

但是,当我在选项卡 A 中输入值后(即更新数据库后)从选项卡 A 切换到选项卡 B 时,选项卡 B 显示为空。

仅当我重新启动应用程序时,选项卡 B 才会正确显示并显示更新的值。

请向我建议可能是什么问题......

I am using two tabs in my android application.

In Tab A, the user enters some values and a database is updated based on the entered values.

In Tab B, I am trying to display the updated values of the database using TextViews.

But when I switch from Tab A to Tab B after entering the values in Tab A (i.e. after updating the database), the Tab B appears empty.

Only when I restart the app, the Tab B appears correctly with updated values.

Please suggest to me what could be the problem...

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

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

发布评论

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

评论(2

咋地 2024-10-24 21:35:49

在选项卡 B 的 Activity 中,您应该在 .onResume() 方法内放置从数据库加载数据并显示数据的代码。

检查 Activity Lifecycle 文档,了解哪些生命周期方法在哪些生命周期阶段运行。

In Tab B's Activity you should put code that loads data from database and displays it, inside .onResume() method.

Check Activity Lifecycle document to see what lifecycle methods are run at what lifecycle stages.

浅唱ヾ落雨殇 2024-10-24 21:35:49

发布您的代码可能会有所帮助,因为我们无法从您的帖子中判断您是否正在使用选项卡活动或选项卡视图,但无论哪种方式,听起来都好像您没有刷新数据。您需要找出正确的事件并实际重新加载 TextView 的文本。当您重新启动应用程序时,它会从数据库加载所有内容,因此您会看到所有正确的数据,但是当您更新数据时,所有小部件都已填充,并且没有任何内容告诉它们数据库实际上发生了变化。

Posting your code could be helpful as we can't tell from your post if you are using tab activities or tab view, but either way it sounds as if you aren't refreshing the data. You need to figure out the correct event and actually reload the text of the TextViews. When you are restarting your application, it is loading everything from the database, and so you see all the correct data, but when you update the data, all the widgets have already been populated, and there isn't anything that tells them that the database actually changed.

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