[Android]Fragment、Activity比較——Android碎片介紹

大搜車-自娛發表於2014-10-22

Fragment是Android honeycomb 3.0新增的概念,Fragment名為碎片不過卻和Activity十分相似,下面介紹下Android Fragment的作用和用法。Fragment用來描述一些行為或一部分使用者介面在一個Activity中,你可以合併多個fragment在一個單獨的activity中建立多個UI皮膚,同時重用fragment在多個activity中.你可以認為fragment作為一個activity中的一節模組 ,fragment有自己的生命週期,接收自己的輸入事件,你可以新增或移除從執行中的activity.

一個fragment必須總是嵌入在一個activity中,同時fragment的生命週期受activity而影響,舉個例子吧,當activity 暫停,那麼所有在這個activity的fragments將被destroy釋放。然而當一個activity在執行比如resume時,你可以單獨的操控每個fragment,比如新增或刪除。

Fragment作為Android 3.0的新特性,有些功能還是比較強大的,比如 合併兩個Activity,如圖

Fragment、Activity比較——Android碎片介紹 - 乂乂 - 一個人,一支菸  ·~~ 

我們可以看到兩個Activity通過兩個Fragment合併到一個Activity的佈局方式,對於平板等大螢幕裝置來說有著不錯的展示皮膚。不過因為Fragment和Activity的生命週期都比較複雜,我們分別對比下:

Fragment、Activity比較——Android碎片介紹 - 乂乂 - 一個人,一支菸  ·~~

 
建立一個fragment你必須建立一個Fragment的子類或存在的子類,比如類似下面的程式碼

public static class AndroidFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) { 
               return inflater.inflate(R.layout.android_fragment, container, false);
    }
}

 

Fragment類的一些程式碼看起來有些像Activity為了讓大家瞭解清楚,Android開發網給大家整理下Fragment的生命週期如上圖所示,部分類似Activity的,我們詳細解釋

 

onCreate()
當fragment建立時被呼叫,你應該初始化一些實用的元件,比如在fragment暫停或停止時需要恢復的

onCreateView()
當系統呼叫fragment在首次繪製使用者介面時,如果畫一個UI在你的fragment你必須返回一個View當然了你可以返回null代表這個fragment沒有UI.

那麼如何新增一個Fragment到Activity中呢? Activity的佈局可以這樣寫

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <fragment android:name="com.android.cwj.ArticleListFragment"
            android:id="@+id/list"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="match_parent" />
    <fragment android:name="com.android.cwj.ArticleReaderFragment"
            android:id="@+id/viewer"
            android:layout_weight="2"
            android:layout_width="0dp"
            android:layout_height="match_parent" />
</LinearLayout>

最後提醒大家Fragment存在於Activity的ViewGroup中,按照繼承關係大家就可以瞭解他的結構。

相關文章