Android 在点击列表视图项时保留 tabview
我目前有一个带有三个选项卡的 tabview
。在一个选项卡中,我有一个 listview
。目前,我在列表中的每个项目上单击它时都会显示一个新窗口/活动/意图。是否可以在执行此操作的同时仍然显示 tabview
?谢谢
I currently have a tabview
with three tabs. In one tab i have a listview
. I currently have each item on the list to display a new window/activity/intent when i click on it. Is it possible to do this and still have the tabview
displaying at the same time? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。
您需要一个
ActivityGroup
类,它有助于在TabActivity
中导航,并且选项卡始终保持可见和可访问。这里是一个有用的教程链接。
但是使用
ActivityGroup
会对Context
和在子Activity< 中打开
Dialog
(添加新窗口)产生一点点、非常小的复杂性。 /code>(ies),但是你对矿工了解得越多,就会发现其复杂性。Yea It is possible.
You need an
ActivityGroup
class, Which helps navigation inTabActivity
, and the tabs always remain visible and accessible.Here is a usefull link to a tutorial.
But using
ActivityGroup
creates a little, very little complexity about theContext
and openingDialog
s (adding new Windows) in childActivity
(ies), but the more you understand the miner will be the complexity.