如何将 SQLite 与 tabview 一起使用
我已经完成了用于创建数据库的 记事本教程 和 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我基本上会将
ListView
放在TabView
选项卡之一内。从 Hello Tab Layout 开始,看看它在哪里显示
2/3rds到页面底部的方式?尝试将
ArtistsActivity.class
替换为您用于ListView
的任何 Activity。I would basically put the
ListView
inside one of theTabView
tabs.Starting with Hello Tab Layout, see where it says
2/3rds of the way to the bottom of the page? Try replacing
ArtistsActivity.class
with whatever activity you used for yourListView
.