如何将 SQLite 与 tabview 一起使用

发布于 2024-12-18 17:10:17 字数 348 浏览 1 评论 0原文

我已经完成了用于创建数据库的 记事本教程 和 tabview 教程Android 开发者网站。

我现在想将两者结合起来,以便按下的每个选项卡都会打开一个不同的数据库。我尝试过将两个教程添加在一起,但没有成功。

记事本教程中的主要活动类扩展了 ListView,而 TabView 教程中的主要活动类扩展了 TabView。我在尝试将两者结合起来时感到不知所措。

有人能指出我正确的方向吗?

I have completed the notepad tutorial for creating a database and the tabview tutorial from the android developer website.

I now want to combine the two so that each tab pressed opens a different database. I have tried adding the two tutorials together but with no luck.

The main activity class in the notepad tutorial extends ListView where the main activity class in the TabView tutorial extends TabView. I'm at a loss trying to combine the two.

Can anyone point me in the right direction?

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

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

发布评论

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

评论(1

少女情怀诗 2024-12-25 17:10:17

我基本上会将 ListView 放在 TabView 选项卡之一内

Hello Tab Layout 开始,看看它在哪里显示

    intent = new Intent().setClass(this, ArtistsActivity.class);

2/3rds到页面底部的方式?尝试将 ArtistsActivity.class 替换为您用于 ListView 的任何 Activity。

I would basically put the ListView inside one of the TabView tabs.

Starting with Hello Tab Layout, see where it says

    intent = new Intent().setClass(this, ArtistsActivity.class);

2/3rds of the way to the bottom of the page? Try replacing ArtistsActivity.class with whatever activity you used for your ListView.

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