我想了解以下片段代码:
public class FragmentA extends Fragment {
public FragmentA(){
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
if(container!=null)
// WHY IS THIS CODE EXECUTED? I did not set container variable
// why if I pass null insted of Container, I get the same result?
return inflater.inflate(R.layout.fragment_a,container,false);
}
}
此ViewGroup容器我从未初始化或其他东西。如果我从未初始化它,那么android如何知道我的容器是什么?
另一件我不清楚的事情是当我调用inflate时,如果我将容器写为null,结果是相同的。
return inflater.inflate(R.layout.fragment_a,null,false);
我在主要活动中使用ViewPager。
我在FragmentPagerAdapter中以这种方式创建片段:
Fragment fragment = new FragmentA();
这些是我的xml文件:
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"/>
和片段:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFCC00" >
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:gravity="center"
android:textColor="#ffffff"
android:textStyle="bold"
android:text="THIS IS FRAGMENT A" />
</FrameLayout>
编辑: 我在开发者网站上找到了这个:
传递给onCreateView()的容器参数是父参数 ViewGroup(来自活动的布局)中的片段布局 将被插入。 savedInstanceState参数是一个Bundle 提供有关片段的先前实例的数据,如果是 片段正在恢复(恢复状态在更多中讨论 关于处理片段生命周期的部分。)
但是,对我来说仍然不清楚。我没有将任何ViewGroup传递给Fragment调用中的Fragment ....
答案 0 :(得分:0)
容器从片段外部提供。它是在xml中使用<fragment>
标记时自动生成的,或者在代码中初始化片段时作为FragmentTransaction
的一部分传递。