单击同一选项卡打开当前选项卡上的第一个活动
是否可以通过单击当前选项卡本身来打开当前选项卡上的任何活动?
我的申请中需要做什么:
用户执行搜索,列表活动显示在同一选项卡上(使用 TabGroup 活动)。然后,如果用户按相同的选项卡,则应再次打开搜索页面。
这可能吗?
Is it possible to open any acticity on the current tab by clicking the current tab itself?
What is to be done in my application:
user performs a search , a listactivity is displayed on same tab(Using TabGroup activity). Then If User presses the same tab, again the search page should open.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个,,,,
您可以在同一个活动中执行两项活动,而不是开始两项活动。
当用户再次单击搜索时,再次启动 SearchActivity(像往常一样)。
Try this,,,,
Rather than starting two activities, you perform both in same activity.
when user clicks search again start SearchActivity again (as usual).
请参阅此链接:
在 Android 的选项卡中启动活动
在第一个答案中,您可以设置 SharedPreference 变量,然后检查该变量以了解要在此选项卡中加载哪个活动(在 YourActivityGROUP 类中)。您可以在用于打开活动的主活动中相应地将 Extras 设置为 Intent在选项卡中。 (我还没有尝试过,但我想,这会解决你的问题。)
Refer this link:
Launching activities within a tab in Android
In first answer,you can set SharedPreference Variable and then check for that variable to know which activity to be loaded in this tab(in YourActivityGROUP class).you can set Extras to Intent accordingly in your main activity which you use to open an activity in a tab. (I haven't tried this,but i think,this will solve your problem.)