如何动态显示Android Fragments

发布于 2025-01-05 03:28:53 字数 140 浏览 1 评论 0原文

我正在 android 3.1 上编写一个 android 应用程序。我最初并排显示 2 个片段。当我选择其他选项卡时,我需要动态创建另外 2 个片段以替换原始片段。我还需要动态设置这些新片段的宽度和重量。
谁能帮我解决这个问题。

提前致谢

I am writing an android app on android 3.1. I am showing 2 fragments side by side initially . When I select other tab I need to create 2 more fragments dynamically in order to replace the original fragments . I also need to set the width and weight of those new fragments dynamically.

Can anyone help me in sorting out this issue.

Thanks in Advance

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

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

发布评论

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

评论(2

千年*琉璃梦 2025-01-12 03:28:53

尼克·坎皮恩所说的。

这是适合我的代码片段:

    Fragment newFragment = MainFrag.newInstance(arg);
    FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    ft.add(R.id.main_container, newFragment).commit();

请注意,我使用支持库来实现向后兼容性。

What Nick Campion said.

Here's a code fragment that works for me:

    Fragment newFragment = MainFrag.newInstance(arg);
    FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    ft.add(R.id.main_container, newFragment).commit();

Note that I am using the support library for backward compatibility.

但可醉心 2025-01-12 03:28:53

您可以使用 FragmentManager 来执行此操作。 FragmentManager.beginTransaction(); 然后根据需要添加删除片段,最后调用commit。如果您查看该文档,它应该非常简单。

You can use the FragmentManager to do this. FragmentManager.beginTransaction(); then add and remove fragments as you please and finally call commit. It should be pretty straightforward if you look at that documentation.

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