Android Studio (API 23) - 我想在多个活动中重用一个片段,但每个活动都有独特的布局

发布于 2025-01-11 06:34:49 字数 157 浏览 0 评论 0原文

这可能吗?

本质上 -

我希望 ActivityA 使用布局 A 托管 FragmentA,并且希望 ActivityB 使用布局 B 托管 FragmentA。我似乎无法找到一种方便的方法。

谢谢你!

抱歉 - 我没有任何值得一看的示例代码!

Is this possible?

Essentially -

I want ActivityA to host FragmentA with layoutA, and I want ActivityB to host FragmentA with layoutB. I can't seem to figure out a way to do it conveniently.

Thank you!

Sorry - I don't have any example code handy that's worth looking at!

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

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

发布评论

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

评论(2

眸中客 2025-01-18 06:34:49

我没有看到在同一个片段文件中使用 2 个布局的意义,因为绑定视图并处理它会很大..是的,您可以根据传递给片段的任何标志来渲染不同的布局,如下所示

override fun onCreateView(
    inflater: LayoutInflater,
    container: ViewGroup?,
    savedInstanceState: Bundle?
): View? {
    val flag = requireArguments().getInt("AnyCustomFlag", 0)
    return if (flag == 1)
        inflater.inflate(R.layout.layout_a, container, false)
    else
        inflater.inflate(R.layout.layout_b, container, false)
}

I don't see a point for 2 layouts in same fragment file because binding the views and handle it will be big .. yes you can render different layouts depending on any flag you pass to fragment like this

override fun onCreateView(
    inflater: LayoutInflater,
    container: ViewGroup?,
    savedInstanceState: Bundle?
): View? {
    val flag = requireArguments().getInt("AnyCustomFlag", 0)
    return if (flag == 1)
        inflater.inflate(R.layout.layout_a, container, false)
    else
        inflater.inflate(R.layout.layout_b, container, false)
}
疾风者 2025-01-18 06:34:49

您可以检查 onCreateView 内的活动类并分配良好的布局

  @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return inflater.inflate(getActivity() instanceof  ActivityA ? R.layout.fragment_a : R.layout.fragment_b, container, false); ;
    }

You can check the activity class inside the onCreateView and assign the good layout

  @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return inflater.inflate(getActivity() instanceof  ActivityA ? R.layout.fragment_a : R.layout.fragment_b, container, false); ;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文