Android是在Android 3.0 (API level 11)引入了Fragment的,中文翻譯是片斷或者成爲碎片(我的理解),能夠把Fragment當成Activity中的模塊,這個模塊有本身的佈局,有本身的生命週期,單獨處理本身的輸入,在Activity運行的時候能夠加載或者移除Fragment模塊。android
其中有個經典圖,你們就字面上理解下就行:ide
能夠把Fragment設計成能夠在多個Activity中複用的模塊,爲了在Android上建立動態的、多窗口的用戶交互體驗,你須要將UI組件和Activity操做封裝成模塊進行使用,在activity中你能夠對這些模塊進行切入切出操做。可使用Fragment來建立這些模塊,若是一個fragment定義了本身的佈局,那麼在activity中它能夠與其餘的fragments生成不一樣的組合,從而爲不一樣的屏幕尺寸生成不一樣的佈局(一個小的屏幕一次只放一個fragment,大的屏幕則能夠兩個或以上的fragment),好比說下圖:佈局
首先,新建一個佈局文件fragmentcontent.xmlspa
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/content_container" android:layout_width="match_parent" android:layout_height="match_parent" > <ImageView android:src="@drawable/content" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </FrameLayout>
這時候與對應的是創建一個顯示佈局文件的ContentFragment類:翻譯
public class ContentFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // TODO Auto-generated method stub return inflater.inflate(R.layout.fragmentcontent, container, false); } }
inflate()方法的三個參數:設計
第一個是resource ID,指明瞭當前的Fragment對應的資源文件;3d
第二個參數是父容器控件;xml
第三個布爾值參數代表是否鏈接該佈局和其父容器控件,在這裏的狀況設置爲false,由於系統已經插入了這個佈局到父控件,設置爲true將會產生多餘的一個View Group。blog
若是須要在Mainactivity中顯示的話:生命週期
<fragment android:id="@+id/fragment1" android:name="com.example.fragmenttest.ContentFragment" android:layout_width="match_parent" android:layout_height="wrap_content" />
activity_main.xml中的代碼爲:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.fragmenttest.MainActivity" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="中共十八大四中全會召開" /> <fragment android:id="@+id/fragment1" android:name="com.example.fragmenttest.ContentFragment" android:layout_width="match_parent" android:layout_height="wrap_content" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="依法治國,以人爲本" /> <LinearLayout android:id="@+id/parentTest" android:layout_width="wrap_content" android:orientation="vertical" android:layout_height="wrap_content" > </LinearLayout> </LinearLayout>
顯示的結果爲:
這個時候能夠在Mainactivity中加一段代碼:
FragmentTransaction fragmentTransaction = getFragmentManager() .beginTransaction(); ContentFragment fragment = new ContentFragment(); fragmentTransaction.add(R.id.parentTest, fragment); fragmentTransaction.commit();
結果以下:
基本操做的就是添加,替換,刪除(若是是定義在xml文件中的是不能夠刪除的)
自定義的添加:
FragmentTransaction fragmentTransaction = getFragmentManager() .beginTransaction(); ContentFragment fragment = new ContentFragment(); fragmentTransaction.add(R.id.parentTest, fragment); fragmentTransaction.commit();
替換:
FragmentTransaction fragmentTransaction = getFragmentManager() .beginTransaction(); TitleFragment fragment = new TitleFragment(); fragmentTransaction.replace(R.id.fragment1, fragment); fragmentTransaction.commit();
若是仔細看一下,上面應該仍是能夠看出來基本上操做就是獲取Manager,而後就行添加,刪除操做,關於內部Fragments之間的交互還在研究中,但願有機會能夠補發~