一 fragment加载方式

静态加载:
把当成普通类来使用 。
1.继承类,重载的方法,此方法主要是创建的布局 。
2.在的XMl文件中 , 通过标签就可以使用我们自定义的,这里通过指定标签的name属性来确定使用哪一个 。
例子:
的布局:
xmlns:=""
xmlns:tools=""
:=""
:=""
:="@color/"
tools:="com.....">
:id="@+id/"
:=""
:=""
:=""
:=""
:="20dp"
:text="@/"/>
的代码:
package com.example.liaoli.fragmentdemo.fragment;import android.os.Bundle;import android.app.Fragment;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.TextView;import com.example.liaoli.fragmentdemo.R;public class ContentFragment extends Fragment {private TextView title;public static ContentFragment newInstance(String param1, String param2) {ContentFragment fragment = new ContentFragment();return fragment;}public ContentFragment() {}@Overridepublic View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {// Inflate the layout for this fragmentView view = inflater.inflate(R.layout.