android Fragments詳解三:實現Fragment的介面

yangxi_001發表於2014-06-10
fragment新增使用者介面

    fragment一般作為activity的使用者介面的一部分,把它自己的layout嵌入到activitylayout中。    一個

    要為fragment提供layout,你必須實現onCreateView()回撥方法,然後在這個方法中返回一個View物件,這個物件是fragmentlayout的根。

    注:如果你的fragment是從ListFragment中派生的,就不需要實現onCreateView()方法了,因為預設的實現已經為你返回了ListView控制元件物件。

    要從onCreateView()方法中返回layout物件,你可以從layoutxml中生成layout物件。為了幫助你這樣做,onCreateView()提供了一個LayoutInflater物件。

舉例:以下程式碼展示了一個Fragment的子類如何從layoutxml檔案example_fragment.xml中生成物件。

publicstaticclassExampleFragmentextendsFragment{
   
@Override
  
publicViewonCreateView(LayoutInflaterinflater,ViewGroupcontainer,BundlesavedInstanceState){
       
//Inflate the layout for this fragment
       
returninflater.inflate(R.layout.example_fragment,container,false);
   
}
}

    onCreateView()引數中的container是存放fragmentlayoutViewGroup物件。savedInstanceState引數是一個Bundle,跟activityonCreate()Bundle差不多,用於狀態恢復。但是fragmentonCreate()中也有Bundle引數,所以此處的Bundle中存放的資料與onCreate()中存放的資料還是不同的。至於詳細資訊,請參考“操控fragment的生命週期”一節。

Inflate()方法有三個引數:

1layout的資源ID

2存放fragmentlayoutViewGroup

3布林型資料表示是否在建立fragmentlayout期間,把layout附加到container上(在這個例子中,因為系統已經把layout插入到container中了,所以值為false,如果為true會導至在最終的layout中建立多餘的ViewGroup(這句我看不明白,但我翻譯的應該沒錯))。

現在你看到如何為fragment建立layout了,下面講述如何把它新增到activity中。

fragment新增到activity

    一般情況下,fragment把它的layout作為activitiyloyout的一部分合併到activity中,有兩種方法將一個fragment新增到activity中:

方法一:在activitylayoutxml檔案中宣告fragment

    如下程式碼,一個activity中包含兩個fragment

<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="horizontal"
   android:layout_width="match_parent"
   android:layout_height="match_parent">
   <fragmentandroid:name="com.example.news.ArticleListFragment"
           android:id="@+id/list"
           android:layout_weight="1"
           android:layout_width="0dp"
          android:layout_height="match_parent"/>
   <fragmentandroid:name="com.example.news.ArticleReaderFragment"
           android:id="@+id/viewer"
           android:layout_weight="2"
           android:layout_width="0dp"
          android:layout_height="match_parent"/>
</LinearLayout>

<fragment>中宣告一個fragment

    當系統建立上例中的layout時,它例項化每一個fragment,然後呼叫它們的onCreateView()方法,以獲取每個fragmentlayout。系統把fragment返回的view物件插入到<fragment>元素的位置,直接代替<fragment>元素。

    注:每個fragment都需要提供一個ID,系統在activity重新建立時用它來恢復fragment們,你也可以用它來操作fragment進行其它的事物,比如刪除它。有三種方法給fragment提供ID

android:id屬性賦一個數字。

android:tag屬性賦一個字串。

3如果你沒有使用上述任何一種方法,系統將使用fragment的容器的ID

方法二:在程式碼中新增fragment到一個ViewGroup

     這種方法可以在執行時,把fragment新增到activitylayout中。你只需指定一個要包含fragmentViewGroup

    為了完成fragment的事務(比如新增,刪除,替換等),你必須使用FragmentTransaction的方法。你可以從activity獲取到FragmentTransaction,如下:

FragmentManagerfragmentManager =getFragmentManager()
FragmentTransactionfragmentTransaction =fragmentManager.beginTransaction();

    然後你可以用add()方法新增一個fragment,它有引數用於指定容納fragmentViewGroup。如下:

ExampleFragmentfragment =newExampleFragment();
fragmentTransaction.add(R.id.fragment_container,fragment);
fragmentTransaction.commit();

    Add()的第一個引數是容器ViewGroup,第二個是要新增的fragment。一旦你通過FragmentTransactionfragment做出了改變,你必須呼叫方法commit()提交這些改變。

不僅在無介面的fragment中,在有介面的fragment中也可以使用tag來作為為一標誌,這樣在需要獲取fragment物件時,要呼叫findFragmentTag()

新增一個沒有介面的fragment

    上面演示瞭如何新增fragment來提供介面,然而,你也可以使用fragmentactivity提供後臺的行為而不用顯示fragment的介面。

    要新增一個沒有介面的fragment,需在activity中呼叫方法add(Fragment,String)(它支援用一個唯一的字串做為fragment的”tag”,而不是viewID)。這樣新增的fragment由於沒有介面,所以你在實現它時不需呼叫實現onCreateView()方法。

    使用tag字串來標識一個fragment並不是只能用於沒有介面的fragment上,你也可以把它用於有介面的fragment上,但是,如果一個fragment沒有介面,tag字串將成為它唯一的選擇。獲取以tag標識的fragment,需使用方法findFragmentByTab()

轉自:http://blog.csdn.net/niu_gao/article/details/7171697

相關文章