Android Fragment使用方法

來源:互聯網
上載者:User

標籤:android   style   blog   http   io   ar   color   使用   sp   


通常地 fragment做為宿主activity UI的一部分, 被作為activity整個view hierarchy的一部分被嵌入.
有2種方法你可以添加一個fragment到activity layout:

一、在activity的layout檔案中聲明fragment
  你可以像為View一樣, 為fragment指定layout屬性(sdk3.0以後).
  例子是一個有2個fragment的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.example.news.ArticleListFragment"                  android:id="@+id/list" android:layout_weight="1"                  android:layout_width="0dp" android:layout_height="match_parent" />                    <fragment android:name="com.example.news.ArticleReaderFragment"                     android:id="@+id/viewer" android:layout_weight="2"                     android:layout_width="0dp" android:layout_height="match_parent" />    </LinearLayout>

    <fragment> 中的 android:name 屬性指定了在layout中執行個體化的Fragment類.
  當系統建立這個activity layout時, 它執行個體化每一個在layout中指定的fragment,並調用每一個上的onCreateView()方法,來擷取每一個fragment的layout.
    系統將從fragment返回的 View 直接插入到<fragment>元素所在的地方.
  注意: 每一個fragment都需要一個唯一的標識, 如果activity重啟,系統可以用來恢複fragment(並且你也可以用來捕獲fragment來處理事務,例如移除它.)
  有3種方法來為一個fragment提供一個標識:
      為 android:id 屬性提供一個唯一ID.
      為 android:tag 屬性提供一個唯一字串.
      如果以上2個你都沒有提供, 系統使用容器view的ID.
    
二、使用FragmentManager將fragment添加到一個已存在的ViewGroup.
    當activity啟動並執行任何時候, 都可以將fragment添加到activity layout.只需簡單的指定一個需要放置fragment的ViewGroup.
    為了在你的activity中操作fragment事務(例如添加,移除,或代替一個fragment),必須使用來自 FragmentTransaction 的API.
  可以按如下方法,從你的Activity取得一個 FragmentTransaction 的執行個體:
   

FragmentManager fragmentManager = getFragmentManager();FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

    然後你可以使用 add() 方法添加一個fragment, 指定要添加的fragment, 和要插入的view.
   

ExampleFragment fragment = new ExampleFragment();fragmentTransaction.add(R.id.fragment_container, fragment);fragmentTransaction.commit();

    add()的第一個參數是fragment要放入的ViewGroup, 由resource ID指定, 第二個參數是需要添加的fragment.
    一旦用FragmentTransaction做了改變,為了使改變生效,必須調用commit().
    
管理Fragment
   
   管理Fragment在你的Activity你需要使用一個名為FragmentManager的類,通過調用getFragmentManager() 方法來執行個體化該管理類在你的Activity種。
   FragmentManager 類一些主要的方法有通過findFragmentById()來擷取一個Activity中有關Fragment布局。
   當然還有類似 findFragmentByTag()方法,以及當Fragment中出棧的popBackStack()同時可以註冊 addOnBackStackChangedListener()管理。
   具體的可以在android.app.FragmentManager類中瞭解

最佳化Fragment事物處理

    一個很好的特性在添加,刪除,替換fragment在Activity時可以使用FragmentTransaction類來提高批量處理的效率,這點和SQLite的資料庫更新原理類似。      

FragmentManager fragmentManager = getFragmentManager();//執行個體化fragmentmanager類FragmentTransaction transaction = fragmentManager.beginTransaction();//通過begintransaction方法擷取一個事物處理執行個體。

    在這期間可以使用 add(), remove(), 以及  replace(). 最終需要改變時執行 commit()即可。

transaction.replace(R.id.fragment_container, newFragment);transaction.addToBackStack(null);transaction.commit();        

    對於在切換fragment時,需要保持fragment狀態的情況,如底部選項卡切換模式中,可以使用hide()來緩衝需要隱藏的fragment和show()來顯示隱藏的fragment,當然fragment為null時要先add()
       
Fragment和Activity互相通訊

    通常Fragment中我們放入平時標準的控制項或自訂的控制項,基本上和Activity一樣,但是如何Fragment中的View布局也是放到Activity中的,
    這裡eoeAndroid提示大家有3種方法來實現:
   
    View listView = getActivity().findViewById(R.id.cwj);
    //通過getActivity方法可以擷取一個Activity中的fragment,這裡的cwj是一個fragment,在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=".ArticleListFragment"            android:id="@+id/cwj" android:layout_weight="1"            android:layout_width="0dp" android:layout_height="match_parent" />                <fragment android:name=".ArticleReaderFragment"            android:id="@+id/smart" android:layout_weight="2"            android:layout_width="0dp" android:layout_height="match_parent" />    </LinearLayout>

   第二種通過getFragmentManager方法擷取執行個體,
   ExampleFragment fragment = (ExampleFragment) getFragmentManager().findFragmentById(R.id.cwj);    
    
   還有普遍的方式是定義介面的方式來通訊,API文檔也推薦這種方式
    
    
    
    
    
    
    
    
    
    
    
   

Android Fragment使用方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.