是否可以将意图传递给选项卡?

发布于 2024-12-20 23:04:57 字数 1006 浏览 0 评论 0原文

我尝试将意图传递给操作栏选项卡。 我有一个构建 ActionBar 的主要活动:

ActionBar actionBar = getActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
    actionBar.setDisplayShowTitleEnabled(false);
    Tab tab = actionBar.newTab()
            .setText("MY TICKETS")
            .setTabListener(new TabListener<ShowListFragment>(
                    this, "LISTVIEW", ShowListFragment.class));

    actionBar.addTab(tab);


    tab = actionBar.newTab()
        .setText("LAST DRAW")
        .setTabListener(new TabListener<ShowLastDrawFragment>(
                this, "SHOWVIEW", ShowLastDrawFragment.class));
    actionBar.addTab(tab);

现在我想通过意图机制传递一些信息,这可能吗? 就像:

intent.putExtra("intent", mySerializeable());

我想通过以下方式访问我的选项卡片段中的类:

mySerializeable ms = (mySerializeable) getIntent().getSerializableExtra("intent");

我发现了类似 setContent(Intent Intent) 的内容,但这仅适用于 TabHost。 我想做的事情通常可能吗?如果是的话,如何做?

I try to pass an intent to an action bar tab.
I have a main activity where I build my ActionBar:

ActionBar actionBar = getActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
    actionBar.setDisplayShowTitleEnabled(false);
    Tab tab = actionBar.newTab()
            .setText("MY TICKETS")
            .setTabListener(new TabListener<ShowListFragment>(
                    this, "LISTVIEW", ShowListFragment.class));

    actionBar.addTab(tab);


    tab = actionBar.newTab()
        .setText("LAST DRAW")
        .setTabListener(new TabListener<ShowLastDrawFragment>(
                this, "SHOWVIEW", ShowLastDrawFragment.class));
    actionBar.addTab(tab);

Now I want to pass some informations with the intent mechanism, is this possible?
Like:

intent.putExtra("intent", mySerializeable());

I would like to access the class inside my tab fragment with:

mySerializeable ms = (mySerializeable) getIntent().getSerializableExtra("intent");

I found something like setContent(Intent intent), but that only works with TabHost.
Is it generally possible what I am trying to do and when yes, how?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文