单击同一选项卡打开当前选项卡上的第一个活动

发布于 2024-12-10 03:10:49 字数 139 浏览 0 评论 0原文

是否可以通过单击当前选项卡本身来打开当前选项卡上的任何活动?

我的申请中需要做什么:
用户执行搜索,列表活动显示在同一选项卡上(使用 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 技术交流群。

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

发布评论

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

评论(2

风启觞 2024-12-17 03:10:49

试试这个,,,,

您可以在同一个活动中执行两项活动,而不是开始两项活动。

  1. 按下选项卡时显示搜索活动。
  2. 显示搜索屏幕,当用户单击搜索时,获取搜索结果并将其设置为当前活动视图,即 setContentView(list);

当用户再次单击搜索时,再次启动 SearchActivity(像往常一样)。

Try this,,,,

Rather than starting two activities, you perform both in same activity.

  1. On pressing tab show search activity.
  2. show search screen, when user clicks search, get your search result and set it as current activity view i.e, setContentView(list);

when user clicks search again start SearchActivity again (as usual).

友谊不毕业 2024-12-17 03:10:49

请参阅此链接:

在 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.)

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