gpt4 book ai didi

android - Activity + fragment : add fragment in code vs. xml

转载 作者:行者123 更新时间:2023-11-29 00:13:33 24 4
gpt4 key购买 nike

在代码中向 Activity 布局添加 fragment 与在 xml 中添加 fragment 有区别吗?

if (savedInstanceState == null) {
getFragmentManager().beginTransaction()
.add(R.id.container, CardViewFragment.newInstance())
.commit();
}

对比

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:name="com.example.CardViewFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="tag_cardview_fragment" />

最佳答案

如果您使用代码方法,您可以动态更改加载的 fragment ,例如按钮点击或任何其他用户生成的事件。

关于android - Activity + fragment : add fragment in code vs. xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28342120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com