【Android UI設計與開發】第07期:底部菜單欄(二)Fragment的詳細介紹和使用方法

 因爲TabActivity在Android4.0之後已經被徹底棄用,那麼我就再也不浪費口水繼續講解它了,取而代之的是Fragment。Fragment是Android3.0新增的概念,Fragment翻譯成中文是碎片的意思,不過卻和Activity十分的類似,這一篇我花大量的篇幅來詳細的講解Fragment的介紹和使用方法。php


1、Fragment的基礎知識介紹java


1.1概述android

1.1.1 特性數據庫

        Fragment是activity的界面中的一部分或一種行爲。能夠把多個Fragment組合到一個activity中來建立一個多界面網絡

而且能夠在多個activity中重用一個Fragment。能夠把Fragment任務模塊化的一段activity,它具備本身的生命週期,app

接收它本身的事件,並能夠在activity運行時被添加或刪除。ide

       Fragment不能獨立存在,它必須嵌入到activity中,並且Fragment的生命週期直接受所在的activity的影響。例模塊化

如:當activity暫停時,他擁有的全部的Fragment都暫停了,當activity銷燬時,他擁有的全部Fragment都被銷燬。然函數

而,當activity運行時(在onResume()以後,onPause()以前),能夠單獨地操做每一個Fragment,好比添加或刪除它工具

們。當中執行上述針對Fragment的事務時,能夠將事務添加到一個棧中,這個棧被activity管理,棧中的每一條都是一

個Fragment的一次事務。有了這個棧,就能夠反向執行Fragment的事務,這樣就能夠在Fragment級支持「返回」鍵

(向後導航)。

        當向activity中添加一個Fragment時,它須置於ViewGroup控件中,而且需定義Fragment本身的界面。能夠在

layout.xml佈局文件中聲明Fragment,元素爲:<fragment>;也能夠在代碼中建立Fragment,而後把它加入到

ViewGroup控件中。然而,Fragment不必定非要放在activity的界面中,它能夠隱藏在後臺爲activity工做。


1.1.2 生命週期

onCreate():

     當建立fragment時系統調用此方法。在其中必須初始化fragment的基礎組件們。可參考activity的說明;


onCreateView():

     系統在fragment要畫本身的界面時調用(在真正顯示以前)此方法,這個方法必須返回fragment的layout的根控

件,若是這個fragment不提供界面,那它應返回null;


onPause():

     大多數程序應最少對fragment實現這三個方法,固然還有其它幾個回調方法可應該按狀況實現之,全部的聲明週期

回調函數在「操控fragment的生命週期」一節中有詳細討論。


下圖爲fragment的生命週期(它所在的activity處於運行狀態)



Activity和Fragment生命週期對比圖以下:


兩個的生命週期很相似,也息息相關。


1.1.3 派生類


DialogFragment

    顯示一個浮動的對話框。使用這個類建立對話框是替代activity建立對話框的最佳選擇。由於能夠把fragmentdialog

放入到activity的返回棧中,使用戶能再返回到這個對話框。


ListFragment

    顯示一個列表控件,就像ListActivity類,它提供了不少管理列表的方法,好比onListItemClick()方法響應click事件。


PreferenceFragment

    顯示一個由Preference對象組成的列表,與PreferenceActivity相同。它用於爲程序建立「設置」activity。


1.2 範例


     寫一個讀新聞的程序,能夠用一個fragment顯示標題列表,另外一個fragment顯示選中標題的內容,這兩個fragment

都在一個activity上,並排顯示。那麼這兩個fragment都有本身的生命週期並響應本身感興趣的事件。因而,不須要再

像手機上那樣用一個activity顯示標題列表,用另外一個activity顯示新聞內容;如今能夠把二者放在一個activity上同時顯

示出來。以下圖:


         

       Fragment必須被寫成可重用的模塊。由於fragment有本身的layout,本身進行事件響應,擁有本身的生命週期和

行爲,因此能夠在多個activity中包含同一個Fragment的不一樣實例。這對於讓世界在不一樣的屏幕尺寸下都能給用戶完美

的體驗尤爲重要。好比能夠在程序運行於大屏幕中時啓動包含不少fragment的activity,而在運行小屏幕時啓動一個包

含少許fragment的activity。

        剛纔讀新聞的程序,當檢測到程序運行於大屏幕時,啓動activityA,將標題列表和新聞內容這兩個fragment都放

在activityA中;當檢測到程序運行於小屏幕時,仍是啓動activityA,但此時A中只有標題列表fragment,當選中一個標

題時,activityA啓動activityB,B中含有新聞內容fragment。


1.3 建立Fragment

         要建立fragment,必須從Fragment或Fragment的派生類派生出一個類。Fragment的代碼寫起來有些像activity。

它具備跟activity同樣的回調方法,好比onCreate(),onStart(),onPause()和onStop()。實際上,若是想把老的程序改成

使用fragment,基本上只須要把activity的回調方法的代碼移到fragment中對應的方法便可。


1.3.1添加有界面的Fragment


       Fragment通常做爲activity的用戶界面的一部分,把它本身layout嵌入到activity的layout中。一個要爲fragment提

供layout,必須實現onCreateView()回調方法,而後在這個方法中返回一個View對象,這個對象時fragment的layout的

根。

       注意:若是fragment是從ListFragment中派生的,就不須要實現onCreateView()方法了,由於默認的實現已經返

回了ListView控件對象。

       要從onCreateView()方法中返回layout對象,能夠從layout.xml佈局文件中生成layout對象。爲了幫助這樣作,

onCreateView()提供了一個layoutInflater對象。舉例:如下代碼展現了一個Fragment的子類如何從layout.xml佈局文件

example_fragment.xml中生成對象。

  1. <span style="font-size:10px;">public static ExampleFragment extends Fragment {   

  2. @Override   

  3. publicView onCreateView(LayoutInflater inflater, ViewGroup container,   

  4. Bundle savedInstanceState) {   

  5. returninflater.inflate(R.layout.example_fragment, container, false);   

  6. }   

  7. }</span>  

複製代碼

onCreateView()參數中的container是存放fragment的layout的ViewGroup對象。saveInstanceState參數是一個Bundle,跟activity的onCreate()中Bundle差很少,用於狀態恢復。可是fragment的onCreate()中也有Bundle參數,因此此處的Bundle中存放的數據與onCreate()中存放的數據仍是不一樣的。Inflate()方法中有三個參數:  <1> layout的資源ID;  <2> 存放fragment的layout的ViewGroup;  <3> 布爾數據表示是否在建立fragment的layout期間,把layout附加到container上(在這個例子中,由於系統已經把layout插入到container中了,因此值爲false,若是爲true會致使在最終的layout中建立多餘的ViewGroup)。      下面講述如何把它添加到activity中。把fragment添加到activity通常狀況下,fragment把它的layout做爲activity的layout的一部分合併到activity中,有兩種方法將一個fragment添加到activity中:
方法一:在activity的layout.xml文件中聲明fragment

  1. <?xmlversionxmlversion="1.0" encoding="utf-8" ?>  

  2. <LinearLayoutxmlns:androidLinearLayoutxmlns:android=" http://schemas.android.com/apk/res/android"   

  3. android:orientation="horizontal"   

  4. android:layout_width="match_parent"   

  5. android:layout_height="match_parent" >  

  6. <fragmentandroid:namefragmentandroid:name="com.android.cwj.ArticleListFragment"   

  7. android:id="@+id/list"   

  8. android:layout_weight="1"   

  9. android:layout_width="0dp"   

  10. android:layout_height="match_parent" />  

  11. <fragmentandroid:namefragmentandroid:name="com.android.cwj.ArticleReaderFragment"   

  12. android:id="@+id/viewer"   

  13. android:layout_weight="2"   

  14. android:layout_width="0dp"   

  15. android:layout_height="match_parent" />  

  16. </LinearLayout>  

複製代碼

以上代碼中,<fragment>中聲明一個fragment。當系統建立上例中的layout時,它實例化每個fragment,而後調用它們的onCreateView()方法,以獲取每一個fragment的layout。系統把fragment返回的view對象插入到<fragment>元素的位置,直接代替<fragment>元素。注:每一個fragment都須要提供一個ID,系統在activity從新建立時用它來恢復fragment,也能夠用它來操做fragment進行其它的事物,好比刪除它。有三種方法給fragment提供ID:  <1> 爲Android:id屬性賦一個數字;  <2> 爲Android:tag屬性賦一個字符串。若是沒有使用上述任何一種方法,系統將使用fragment的容器的ID。

方法二:在代碼中添加fragment到一個ViewGroup        這種方法能夠在運行時,把fragment添加到activity的layout中。只需指定一個要包含fragment的ViewGroup。爲了完成fragment的事務(好比添加,刪除,替換等),必須使用FragmentTransaction的方法。能夠從activity獲取FragmentTransaction,以下:
  1. FragmentManager fragmentManager = getFragmentManager();  

  2. FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();  

複製代碼

而後能夠用add()方法添加一個fragment,它有參數用於指定容納fragment的ViewGroup。如,Add()的第一個參數是容器ViewGroup,第二個是要添加的fragment。一旦經過FragmentTransaction對fragment作出了改變,必須調用方法commit()提交這些改變。不只在無界面的fragment中,在有界面的fragment中也可使用tag來做爲惟一的標誌,這樣在須要獲取fragment對象時,要調用findFragmentTag()。  1.3.2 添加沒有界面的Fragment         上面演示瞭如何添加fragment來提供界面,然而,也可使用fragment爲activity提供後臺的行爲而不用顯示fragment的界面。要添加一個沒有界面的fragment,須要在activity中調用方法add(Fragment,String)(它支持用一個惟一的字符串作爲fragment的「tag」,而不是viewID)。這樣添加的fragment因爲沒有界面,因此在實現它時不須要調用實現onCreateView()方法。        使用tag字符串來標示一個fragment並非只能用於沒有界面的fragment上,也能夠把它用於有界面的fragment上,可是,若是一個fragment沒有界面,tag字符串將成爲它惟一的選擇。獲取以tag表示的fragment,需使用方法findFragmentByTab()。
1.4 Fragment管理      要管理fragment,需使用FragmentManager,要獲取它,需在activity中調用方法getFragmentManager()。能夠用FragmentManager來作如下事情:      <1> 使用方法findFragmentById()或findFragmentByTag(),獲取activity中已存在的fragment;      <2> 使用方法popBackStack()從activity的後退棧中彈出fragment(這能夠模擬後退鍵引起的動做),用方法addOnBackStackChangedListenner()註冊一個偵聽器以監視後退棧的變化;      <3> 還可使用FragmentManager打開一個FragmentTransaction來執行fragment的事務,好比添加或刪除fragment。       在activity中使用fragment的一個偉大的好處是能根據用戶的輸入對fragment進行添加、刪除、替換以及執行其餘動做的能力。提交的一組fragment的變化叫作一個事務。事務經過FragmentTransaction來執行。還能夠把每一個事務保存在activity的後退棧中,這樣就可讓用戶在fragment變化之間導航(跟在activity之間導航同樣)。
能夠經過FragmentManager來取得FragmentTransaction的實例,以下:
  1. FragmentManager fragmentManager = getFragmentManager();  

  2. FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();  

複製代碼

一個事務是在同一時刻執行的一組動做(很像數據庫中的事務)。能夠用add(),remove(),replace()等方法構成事務,最後使用commit()方法提交事務。在調用commit()以前,能夠用addToBackStack()把事務添加到一個後退棧中,這個後退棧屬於所在的activity。有了它,就能夠在用戶按下返回鍵時,返回到fragment執行事務以前的狀態。以下例:演示瞭如何用一個fragment代替另外一個fragment,同時在後退棧中保存被代替的fragment的狀態。
  1. //建立一個fragment  

  2. Fragment newFragment = new ExampleFragment();  

  3. //實例化fragment事務管理器  

  4. FragmentTransaction transaction = getFragmentManager().beginTransaction();  

  5.   

  6. //用新建立的fragment來代替fragment_container  

  7. transaction.replace(R.id.fragment_container,newFragment);  

  8. //添加進棧中  

  9. transaction.addToBackStack(null);  

  10.   

  11. //提交事務  

  12. transaction.commit();

複製代碼

解釋:newFragment代替了控件ID R.id.fragment_container所指向的ViewGroup中所含的任何fragment。而後調用addToBackStack(),此時被代替的fragment就被放入後退棧中,因而當用戶按下返回鍵時,事務發生回溯,原先的fragment又回來了。若是向事務添加了多個動做,好比屢次調用了add(),remove()等以後又調用了addToBackStack()方法,那麼全部的在commit()以前調用的方法都被做爲一個事務。當用戶按返回鍵時,全部的動做都被反向執行(事務回溯)。    
事務中動做的執行順序可隨意,但要 注意如下幾點:<1> 必須最後調用commit();
<2> 若是添加了多個fragment,那麼它們的現實順序跟添加順序一致(後顯示的覆蓋前面的)<3> 若是在執行的事務中有刪除fragment的動做,並且沒有調用addToBackStack(),那麼當事務提交時,那些被刪除的fragment就被銷燬了。反之,那些fragment就不會被銷燬,而是處於中止狀態。當用戶返回時,它們會被恢復。
<4> 可是,調用commit()後,事務並不會立刻執行。它會在activity的UI線程(其實就是主線程)中等待直到現成能執行的時候才執行。若是必要,能夠在UI線程中調用executePendingTransactions()方法來當即執行事務。但通常不須要這樣作,除非有其它線程在等待事務的執行。     注意:只能在activity處於可保存狀態的狀態時,好比running中,onPause()方法和onStop()方法中提交事務,不然會引起異常。這是由於fragment的狀態會丟失。若是要在可能丟失狀態的狀況下提交事務,請使用commitAllowingStateLoss()。  1.5 Fragment與Activity通信            儘管fragment的實現是獨立於activity的,能夠被用於多個activity,可是每一個activity所包含的是同一個fragment的不一樣的實例。Fragment能夠調用getActivity()方法很容易的獲得它所在的activity的對象,而後查找activity中的控件們(findViewById())。                有時,可能須要fragment與activity共享事件。一個好辦法是在fragment中定義一個回調接口,而後在activity中實現之。例如,仍是那個新聞程序的例子,它有一個activity,activity中含有兩個fragment。fragmentA顯示新聞標題,fragmentB現實標題對應的內容。fragmentA必須在用戶選擇了某個標題時告訴activity,而後activity再告訴fragmentB,fragmentB就顯示出對應的內容。   2、Fragment實例講解一  2.1 實例效果圖
點擊「存儲」按鈕顯示的界面:
點擊wifi「按鈕」顯示的界面:

2.2 項目結構
 
2.3 具體代碼編寫一、左邊頁面佈局界面,frag_list.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:orientation="vertical" >


  6.     <TextView

  7.         android:layout_width="wrap_content"

  8.         android:layout_height="wrap_content"

  9.         android:text="無線和網絡"

  10.         android:textSize="30sp" />


  11.     <TextView

  12.         android:layout_width="match_parent"

  13.         android:layout_height="1px"

  14.         android:background="@color/lineColor" />


  15.     <LinearLayout

  16.         android:layout_width="match_parent"

  17.         android:layout_height="wrap_content"

  18.         android:layout_gravity="center_vertical"

  19.         android:layout_marginLeft="10dp"

  20.         android:orientation="horizontal" >


  21.         <TextView

  22.             android:id="@+id/wifi"

  23.             android:layout_width="wrap_content"

  24.             android:layout_height="wrap_content"

  25.             android:layout_gravity="center_vertical"

  26.             android:text="WI-Fi"

  27.             android:textSize="30sp" />


  28.         <ToggleButton

  29.             android:id="@+id/toggleButton"

  30.             android:layout_width="wrap_content"

  31.             android:layout_height="wrap_content"

  32.             android:layout_gravity="center_vertical"

  33.             android:layout_marginLeft="20dp"

  34.             android:text="開" />

  35.     </LinearLayout>


  36.     <TextView

  37.         android:layout_width="match_parent"

  38.         android:layout_height="1px"

  39.         android:background="@color/lineColor" />


  40.     <TextView

  41.         android:layout_width="wrap_content"

  42.         android:layout_height="wrap_content"

  43.         android:text="設備"

  44.         android:textSize="30sp" />


  45.     <TextView

  46.         android:layout_width="match_parent"

  47.         android:layout_height="1px"

  48.         android:background="@color/lineColor" />


  49.     <TextView

  50.         android:id="@+id/saveBut"

  51.         android:layout_width="fill_parent"

  52.         android:layout_height="wrap_content"

  53.         android:layout_marginLeft="10dp"

  54.         android:text="存儲"

  55.         android:textSize="35sp" />


  56. </LinearLayout>

複製代碼

二、右邊頁面佈局界面,frag_detail.xml:
  1. <span style="font-size:12px;"><?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:background="@color/right"

  6.     android:orientation="vertical" >


  7.     <RelativeLayout

  8.         android:id="@+id/save"

  9.         android:layout_width="fill_parent"

  10.         android:layout_height="fill_parent"

  11.         android:layout_margin="10dp"

  12.         android:visibility="gone" >


  13.         <include layout="@layout/save" />

  14.     </RelativeLayout>


  15.     <RelativeLayout

  16.         android:id="@+id/wifi"

  17.         android:layout_width="fill_parent"

  18.         android:layout_height="fill_parent"

  19.         android:layout_margin="10dp"

  20.         android:visibility="gone" >


  21.         <include layout="@layout/wifi" />

  22.     </RelativeLayout>


  23. </LinearLayout></span>

複製代碼

三、主佈局界面,main.xml:
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  2.     xmlns:tools="http://schemas.android.com/tools"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:orientation="horizontal"

  6.     tools:context=".AndroidFragmentActivity" >


  7.     <!-- 主頁面 -->

  8.     <!-- 左邊頁面 -->


  9.     <fragment

  10.         android:id="@+id/frag_list"

  11.         android:name="co.cm.fragement.FragementList"

  12.         android:layout_width="fill_parent"

  13.         android:layout_height="wrap_content"

  14.         android:layout_weight="2" />


  15.     <!-- 右面頁面 -->


  16.     <fragment

  17.         android:id="@+id/frag_detail"

  18.         android:name="co.cm.fragement.FragementDetails"

  19.         android:layout_width="fill_parent"

  20.         android:layout_height="wrap_content"

  21.         android:layout_weight="1" />


  22. </LinearLayout>

複製代碼

四、list_item.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:background="@color/left"

  6.     android:orientation="horizontal" >


  7.     <ImageView

  8.         android:id="@+id/img"

  9.         android:layout_width="wrap_content"

  10.         android:layout_height="wrap_content" />


  11.     <TextView

  12.         android:id="@+id/txt_title"

  13.         android:layout_width="wrap_content"

  14.         android:layout_height="wrap_content"

  15.         android:text="Large Text"

  16.         android:textAppearance="?android:attr/textAppearanceLarge" />


  17. </LinearLayout>

複製代碼

五、save.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:orientation="vertical" >


  6.     <TextView

  7.         android:layout_width="match_parent"

  8.         android:layout_height="1px"

  9.         android:background="@color/lineColor" />


  10.     <TextView

  11.         android:layout_width="wrap_content"

  12.         android:layout_height="wrap_content"

  13.         android:layout_marginLeft="10dp"

  14.         android:text="內部存儲空間"

  15.         android:textSize="30sp" />


  16.     <TextView

  17.         android:layout_width="wrap_content"

  18.         android:layout_height="wrap_content"

  19.         android:layout_marginBottom="5dp"

  20.         android:layout_marginLeft="10dp"

  21.         android:layout_marginTop="5dp"

  22.         android:text="1GB/1.98GB"

  23.         android:textSize="20sp" />


  24.     <TextView

  25.         android:layout_width="match_parent"

  26.         android:layout_height="1px"

  27.         android:background="@color/lineColor" />


  28.     <TextView

  29.         android:layout_width="wrap_content"

  30.         android:layout_height="wrap_content"

  31.         android:layout_marginLeft="20dp"

  32.         android:text="總容量"

  33.         android:textSize="30sp" />


  34.     <TextView

  35.         android:layout_width="wrap_content"

  36.         android:layout_height="wrap_content"

  37.         android:layout_marginBottom="5dp"

  38.         android:layout_marginLeft="20dp"

  39.         android:layout_marginTop="5dp"

  40.         android:text="1.98GB"

  41.         android:textSize="20sp" />


  42.     <TextView

  43.         android:layout_width="match_parent"

  44.         android:layout_height="1px"

  45.         android:background="@color/lineColor" />


  46. </LinearLayout>

複製代碼

六、wifi_list:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:orientation="vertical" >


  6.     <TextView

  7.         android:id="@+id/wifi_name"

  8.         android:layout_width="match_parent"

  9.         android:layout_height="wrap_content"

  10.         android:text="qinjin_tp_2" />


  11.     <LinearLayout

  12.         android:layout_width="match_parent"

  13.         android:layout_height="wrap_content"

  14.         android:orientation="horizontal" >


  15.         <TextView

  16.             android:layout_width="wrap_content"

  17.             android:layout_height="wrap_content"

  18.             android:text="信號強度  :" />


  19.         <TextView

  20.             android:id="@+id/wifi_name_state"

  21.             android:layout_width="match_parent"

  22.             android:layout_height="wrap_content"

  23.             android:text="尚未鏈接" />

  24.     </LinearLayout>


  25. </LinearLayout>

複製代碼

七、wifi.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="match_parent"

  4.     android:layout_height="match_parent"

  5.     android:orientation="vertical" >


  6.     <LinearLayout

  7.         android:id="@+id/wifiLinear"

  8.         android:layout_width="match_parent"

  9.         android:layout_height="wrap_content"

  10.         android:orientation="vertical" >


  11.         <LinearLayout

  12.             android:layout_width="match_parent"

  13.             android:layout_height="wrap_content"

  14.             android:orientation="vertical" >


  15.             <TextView

  16.                 android:layout_width="wrap_content"

  17.                 android:layout_height="wrap_content"

  18.                 android:text="MAC地址  :"

  19.                 android:textSize="@dimen/textsize" />


  20.             <TextView

  21.                 android:id="@+id/mac_address"

  22.                 android:layout_width="wrap_content"

  23.                 android:layout_height="wrap_content"

  24.                 android:text="MAC地址 "

  25.                 android:textSize="@dimen/textsize" />

  26.         </LinearLayout>


  27.         <LinearLayout

  28.             android:layout_width="match_parent"

  29.             android:layout_height="wrap_content"

  30.             android:orientation="vertical" >


  31.             <TextView

  32.                 android:layout_width="wrap_content"

  33.                 android:layout_height="wrap_content"

  34.                 android:text="接入點的BSSID :"

  35.                 android:textSize="@dimen/textsize" />


  36.             <TextView

  37.                 android:id="@+id/bssid"

  38.                 android:layout_width="wrap_content"

  39.                 android:layout_height="wrap_content"

  40.                 android:text="接入點的BSSID "

  41.                 android:textSize="@dimen/textsize" />

  42.         </LinearLayout>


  43.         <LinearLayout

  44.             android:layout_width="match_parent"

  45.             android:layout_height="wrap_content"

  46.             android:orientation="vertical" >


  47.             <TextView

  48.                 android:layout_width="wrap_content"

  49.                 android:layout_height="wrap_content"

  50.                 android:text="IP地址: "

  51.                 android:textSize="@dimen/textsize" />


  52.             <TextView

  53.                 android:id="@+id/ip_address"

  54.                 android:layout_width="wrap_content"

  55.                 android:layout_height="wrap_content"

  56.                 android:text="IP地址 "

  57.                 android:textSize="@dimen/textsize" />

  58.         </LinearLayout>


  59.         <LinearLayout

  60.             android:layout_width="match_parent"

  61.             android:layout_height="wrap_content"

  62.             android:orientation="vertical" >


  63.             <TextView

  64.                 android:layout_width="wrap_content"

  65.                 android:layout_height="wrap_content"

  66.                 android:text="id  "

  67.                 android:textSize="@dimen/textsize" />


  68.             <TextView

  69.                 android:id="@+id/id"

  70.                 android:layout_width="wrap_content"

  71.                 android:layout_height="wrap_content"

  72.                 android:text="id "

  73.                 android:textSize="@dimen/textsize" />

  74.         </LinearLayout>


  75.         <LinearLayout

  76.             android:layout_width="match_parent"

  77.             android:layout_height="wrap_content"

  78.             android:orientation="vertical" >


  79.             <TextView

  80.                 android:layout_width="wrap_content"

  81.                 android:layout_height="wrap_content"

  82.                 android:text=" WifiInfo的全部信息包   "

  83.                 android:textSize="@dimen/textsize" />


  84.             <TextView

  85.                 android:id="@+id/info"

  86.                 android:layout_width="wrap_content"

  87.                 android:layout_height="wrap_content"

  88.                 android:text="WifiInfo的全部信息包  "

  89.                 android:textSize="@dimen/textsize" />

  90.         </LinearLayout>


  91.         <ListView

  92.             android:id="@+id/listview"

  93.             android:layout_width="fill_parent"

  94.             android:layout_height="fill_parent"

  95.             android:layout_marginBottom="2dp" >

  96.         </ListView>

  97.     </LinearLayout>


  98.     <TextView

  99.         android:id="@+id/wifiText"

  100.         android:layout_width="wrap_content"

  101.         android:layout_height="wrap_content"

  102.         android:layout_centerInParent="true"

  103.         android:text="要查看可用的網絡,請打開wifi"

  104.         android:textSize="@dimen/textsize" />


  105. </RelativeLayout>

複製代碼

八、主界面類,AndroidFragmentActivity.java:
  1. package co.cm.fragement;


  2. import co.cm.fragement.R;

  3. import android.app.Activity;

  4. import android.content.Context;

  5. import android.os.Bundle;


  6. public class AndroidFragmentActivity extends Activity {

  7.         // 主activity

  8.         @Override

  9.         public void onCreate(Bundle savedInstanceState) {

  10.                 super.onCreate(savedInstanceState);

  11.                 setContentView(R.layout.main);

  12.                 WifiAdmin.getWifiAdmin().setmContext(AndroidFragmentActivity.this);

  13.                 WifiAdmin.getWifiAdmin().getWifiMeathod();

  14.         }

  15. }

複製代碼

九、左面fragment界面類,FragmentList.java:
  1. package co.cm.fragement;


  2. import co.cm.fragement.R;


  3. import android.app.Fragment;

  4. import android.os.Bundle;

  5. import android.os.Handler;

  6. import android.os.Message;

  7. import android.util.Log;

  8. import android.view.LayoutInflater;

  9. import android.view.View;

  10. import android.view.View.OnClickListener;

  11. import android.view.ViewGroup;

  12. import android.widget.CompoundButton;

  13. import android.widget.CompoundButton.OnCheckedChangeListener;

  14. import android.widget.LinearLayout;

  15. import android.widget.TextView;

  16. import android.widget.ToggleButton;


  17. /**

  18. * @author yuyang

  19. *        功能描述:左面fragment界面類,該類提供了選項操做

  20. */

  21. public class FragementList extends Fragment {

  22.         //點擊切換到wifi存儲界面

  23.         private TextView wifi;

  24.         

  25.         //點擊切換到save存儲界面

  26.         private TextView saveBut;

  27.         

  28.         //定義右面fragment實例

  29.         private FragementDetails frag_detail;

  30.         

  31.         //打開關閉wifi按鈕

  32.         private ToggleButton toggleButton;

  33.                 

  34.         //toggleButton按鈕是否被點擊

  35.         private boolean isChecked = false;

  36.         

  37.         //監聽button狀態線程標誌位

  38.         private boolean butIsRunning = false;


  39.         @Override

  40.         public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {

  41.                 // 在這裏初始化fragment的頁面

  42.                 return inflater.inflate(R.layout.frag_list, container, false);

  43.         }


  44.         @Override

  45.         public void onActivityCreated(Bundle savedInstanceState) {

  46.                 super.onActivityCreated(savedInstanceState);

  47.                 // 因爲fragment不是activity,不是oncreated,而是onActivityCreated

  48.                 setView();

  49.                 setListener();


  50.                 startThread();// 啓動控制button的線程,當wifi狀態不是在1或者3的時候,不可點擊,

  51.                 // if (frag != null && frag.isInLayout()) {

  52.                 // switch (arg2) {

  53.                 // case 0:

  54.                 // frag.setText("0000");

  55.         }


  56.         /**

  57.          * 給按鈕設置監聽

  58.          */

  59.         public void setListener() {        

  60.                 saveBut.setOnClickListener(new OnClickListener() {

  61.                         @Override

  62.                         public void onClick(View v) {

  63.                                 frag_detail.setSaveShow();

  64.                         }

  65.                 });

  66.                 

  67.                 wifi.setOnClickListener(new OnClickListener() {

  68.                         @Override

  69.                         public void onClick(View v) {

  70.                                 frag_detail.setWifiShow();

  71.                                 Log.i("111", WifiAdmin.getWifiAdmin().checkState() + "===-=-");

  72.                                 checktoggleButton();// 當點回到wifi界面時,刷新button的狀態

  73.                         }

  74.                 });


  75.                 toggleButton.setOnClickListener(new OnClickListener() {

  76.                         @Override

  77.                         public void onClick(View v) {

  78.                                 Log.i("111", isChecked + "/" + WifiAdmin.getWifiAdmin().checkState());

  79.                                 if (isChecked) {

  80.                                         WifiAdmin.getWifiAdmin().OpenWifi();

  81.                                         frag_detail.setWifiShow();

  82.                                         // toggleButton.setText("關閉");

  83.                                         toggleButton.setChecked(false);

  84.                                         isChecked = false;

  85.                                 } else {

  86.                                         WifiAdmin.getWifiAdmin().CloseWife();

  87.                                         frag_detail.setWifiShow();

  88.                                         // toggleButton.setText("打開");

  89.                                         toggleButton.setChecked(true);

  90.                                         isChecked = true;

  91.                                 }

  92.                                 toggleButton.setClickable(false);

  93.                         }

  94.                 });

  95.         }


  96.         //

  97.         public void checktoggleButton() {

  98.                 if (WifiAdmin.getWifiAdmin().checkState() == 1) {

  99.                         toggleButton.setChecked(true);

  100.                         isChecked = true;

  101.                 }

  102.                 if (WifiAdmin.getWifiAdmin().checkState() == 3) {

  103.                         toggleButton.setChecked(false);

  104.                         isChecked = false;

  105.                 }

  106.         }


  107.         public void setView() {

  108.                 wifi = (TextView) getView().findViewById(R.id.wifi);

  109.                 toggleButton = (ToggleButton) getView().findViewById(R.id.toggleButton);

  110.                 saveBut = (TextView) getView().findViewById(R.id.saveBut);

  111.                 

  112.                 // 實例化右面界面,以便操縱裏面的方法F

  113.                 frag_detail = (FragementDetails) getFragmentManager().findFragmentById(R.id.frag_detail);

  114.                 

  115.                 // 初始化button的裝態

  116.                 if (WifiAdmin.getWifiAdmin().checkState() == 3) {

  117.                         toggleButton.setChecked(false);

  118.                         isChecked = false;

  119.                 }

  120.                 if (WifiAdmin.getWifiAdmin().checkState() == 1) {

  121.                         toggleButton.setChecked(true);

  122.                         isChecked = true;

  123.                 }

  124.                 toggleButton.setClickable(true);

  125.         }


  126.         @Override

  127.         public void onDestroy() {

  128.                 frag_detail.stopWifiThread();

  129.                 butIsRunning = false;

  130.                 super.onDestroy();

  131.         }


  132.         private void startThread() {

  133.                 butIsRunning = true;

  134.                 new Thread(new Runnable() {


  135.                         @Override

  136.                         public void run() {

  137.                                 while (butIsRunning) {

  138.                                         //只有wifi狀態改變變化完畢以後才能容許點擊按鈕

  139.                                         if (WifiAdmin.getWifiAdmin().checkState() == 3) {

  140.                                                 if (!isChecked) {

  141.                                                         toggleButton.setClickable(true);

  142.                                                 }


  143.                                         } else if (WifiAdmin.getWifiAdmin().checkState() == 1) {

  144.                                                 if (isChecked) {

  145.                                                         toggleButton.setClickable(true);

  146.                                                 }

  147.                                         }

  148.                                 }

  149.                         }

  150.                 }).start();

  151.         }


  152. }


複製代碼

十、右面fragment界面類
  1. package co.cm.fragement;


  2. import java.util.ArrayList;

  3. import java.util.List;

  4. import co.cm.fragement.R;

  5. import android.app.Fragment;

  6. import android.net.wifi.ScanResult;

  7. import android.net.wifi.WifiConfiguration;

  8. import android.os.Bundle;

  9. import android.os.Handler;

  10. import android.os.Message;

  11. import android.util.Log;

  12. import android.view.LayoutInflater;

  13. import android.view.View;

  14. import android.view.ViewGroup;

  15. import android.widget.BaseAdapter;

  16. import android.widget.LinearLayout;

  17. import android.widget.ListView;

  18. import android.widget.RelativeLayout;

  19. import android.widget.TextView;


  20. /**

  21. * @author yangyu

  22. *        功能描述:右面fragment界面類,該類實現了右面顯示的操做

  23. */

  24. public class FragementDetails extends Fragment {

  25.         private TextView mac_address, bssid, ip_address, id, info, wifiText;

  26.         

  27.         private ListView listView;

  28.         

  29.         private LinearLayout wifiLinear;

  30.         

  31.         private RelativeLayout save, wifi;

  32.         

  33.         private boolean ThreadFlag = false;

  34.         

  35.         //wifi數據適配器

  36.         private WifiAdapter wifiAdapter;

  37.         

  38.         // 掃描出的網絡鏈接列表

  39.         private List<ScanResult> mWifiList = new ArrayList<ScanResult>();

  40.         

  41.         // 網絡鏈接列表

  42.         private List<WifiConfiguration> mWifiConfiguration = null;

  43.         

  44.         private int nowWifiState = 0;


  45.         @Override

  46.         public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {

  47.                 return inflater.inflate(R.layout.frag_detail, container, false);

  48.         }


  49.         @Override

  50.         public void onActivityCreated(Bundle savedInstanceState) {

  51.                 super.onActivityCreated(savedInstanceState);

  52.                 setView();

  53.                 // setListener();

  54.                 setWifiShow();


  55.         }


  56.         /**

  57.          * 顯示wifi界面

  58.          */

  59.         public void setWifiShow() {        

  60.                 //經過隱藏顯示來達到不一樣頁面內容的切換

  61.                 save.setVisibility(View.GONE);

  62.                 wifi.setVisibility(View.VISIBLE);

  63.                 stopWifiThread();

  64.                 refreshWifi();


  65.         }


  66.         /**

  67.          * 顯示保存界面

  68.          */

  69.         public void setSaveShow() {

  70.                 stopWifiThread();

  71.                 save.setVisibility(View.VISIBLE);

  72.                 wifi.setVisibility(View.GONE);

  73.         }


  74.         /**

  75.          * 初始化組件

  76.          */

  77.         public void setView() {

  78.                 // -----------------wifi-----------------

  79.                 wifiText = (TextView) getView().findViewById(R.id.wifiText);

  80.                 mac_address = (TextView) getView().findViewById(R.id.mac_address);

  81.                 bssid = (TextView) getView().findViewById(R.id.bssid);

  82.                 ip_address = (TextView) getView().findViewById(R.id.ip_address);

  83.                 id = (TextView) getView().findViewById(R.id.id);

  84.                 info = (TextView) getView().findViewById(R.id.info);

  85.                 listView = (ListView) getView().findViewById(R.id.listview);

  86.                 wifiLinear = (LinearLayout) getView().findViewById(R.id.wifiLinear);

  87.                 save = (RelativeLayout) getView().findViewById(R.id.save);

  88.                 wifi = (RelativeLayout) getView().findViewById(R.id.wifi);

  89.                 wifiAdapter = new WifiAdapter();

  90.                 listView.setAdapter(wifiAdapter);

  91.         }


  92.         private Handler handler = new Handler() {

  93.                 @Override

  94.                 public void handleMessage(Message msg) {

  95.                         nowWifiState = WifiAdmin.getWifiAdmin().checkState();

  96.                         // 當wifi打開時,刷新wifi列表的內容

  97.                         if (nowWifiState == 3) {

  98.                                 mWifiList = WifiAdmin.getWifiAdmin().GetWifiList();

  99.                                 // 若是剛開始檢測的wifi列表爲空,則建立一個實例化的wifi而不是null,負責會在adpter裏面報錯

  100.                                 if (mWifiList != null) {

  101.                                         // 若是wifi列表發生改變,則更新,else不更新

  102.                                         if (!mWifiList.toString().equals(

  103.                                                         WifiAdmin.getWifiAdmin().getLastWifiList().toString())) {

  104.                                                 WifiAdmin.getWifiAdmin().setLastWifiList(mWifiList);

  105.                                                 wifiAdapter.notifyDate();

  106.                                         }

  107.                                 } else {

  108.                                         mWifiList = new ArrayList<ScanResult>();

  109.                                 }

  110.                         }

  111.                         refreshMeathod();


  112.                         super.handleMessage(msg);

  113.                 }

  114.         };


  115.         /**

  116.          * 刷新wifi的狀態 

  117.          */

  118.         public void refreshWifi() {

  119.                 new Thread(new Runnable() {

  120.                         @Override

  121.                         public void run() {

  122.                                 ThreadFlag = true;

  123.                                 while (ThreadFlag) {

  124.                                         // Log.i("111", WifiAdmin.getWifiAdmin().checkState() +

  125.                                         // "!!!");

  126.                                         Message msg = handler.obtainMessage();

  127.                                         handler.sendMessage(msg);

  128.                                         try {

  129.                                                 Thread.sleep(1000);

  130.                                         } catch (InterruptedException e) {

  131.                                                 e.printStackTrace();

  132.                                         }

  133.                                 }

  134.                         }

  135.                 }).start();

  136.         }


  137.         public void refreshMeathod() {                

  138.                 // 此處可用switch

  139.                 if (nowWifiState == 3) {                

  140.                         wifiLinear.setVisibility(View.VISIBLE);

  141.                         wifiText.setVisibility(View.INVISIBLE);

  142.                         mac_address.setText(WifiAdmin.getWifiAdmin().GetMacAddress() + "");

  143.                         bssid.setText(WifiAdmin.getWifiAdmin().GetBSSID() + "");

  144.                         ip_address.setText(WifiAdmin.getWifiAdmin().GetIPAddress() + "");

  145.                         id.setText(WifiAdmin.getWifiAdmin().GetNetworkId() + "");

  146.                         info.setText(WifiAdmin.getWifiAdmin().GetWifiInfo() + "");                        

  147.                 } else if (nowWifiState == 1) {

  148.                         wifiText.setVisibility(View.VISIBLE);

  149.                         wifiLinear.setVisibility(View.INVISIBLE);

  150.                         wifiText.setText("要查看可用的網絡,請打開wifi");

  151.                 } else if (nowWifiState == 2) {

  152.                         wifiText.setVisibility(View.VISIBLE);

  153.                         wifiLinear.setVisibility(View.INVISIBLE);

  154.                         wifiText.setText("wifi正在打開");

  155.                 } else if (nowWifiState == 4) {

  156.                         wifiText.setVisibility(View.VISIBLE);

  157.                         wifiLinear.setVisibility(View.INVISIBLE);

  158.                         wifiText.setText("wifi正在關閉");

  159.                 } else {

  160.                         wifiText.setVisibility(View.VISIBLE);

  161.                         wifiLinear.setVisibility(View.INVISIBLE);

  162.                         wifiText.setText("我不知道wifi正在作什麼");

  163.                 }

  164.         }


  165.         public void stopWifiThread() {

  166.                 ThreadFlag = false;

  167.         }


  168.         public class WifiAdapter extends BaseAdapter {

  169.                 @Override

  170.                 public int getCount() {                        

  171.                         return mWifiList.size();

  172.                 }


  173.                 @Override

  174.                 public Object getItem(int position) {

  175.                         return mWifiList.get(position);

  176.                 }


  177.                 @Override

  178.                 public long getItemId(int position) {

  179.                         return position;

  180.                 }


  181.                 @Override

  182.                 public View getView(int position, View convertView, ViewGroup parent) {

  183.                         View view = convertView;


  184.                         final ChatViewHolder vh;


  185.                         if (convertView == null) {

  186.                                 vh = new ChatViewHolder();

  187.                                 view = View.inflate(WifiAdmin.getWifiAdmin().getmContext(),

  188.                                                 R.layout.wifi_list, null);

  189.                                 vh.wifi_name = (TextView) view.findViewById(R.id.wifi_name);


  190.                                 vh.wifi_name_state = (TextView) view

  191.                                                 .findViewById(R.id.wifi_name_state);


  192.                                 view.setTag(vh);

  193.                         } else {

  194.                                 vh = (ChatViewHolder) view.getTag();

  195.                         }

  196.                         vh.wifi_name.setText(mWifiList.get(position).SSID.toString());// 網絡的名字,惟一區別WIFI網絡的名字

  197.                         vh.wifi_name_state.setText(mWifiList.get(position).level + "");

  198.                         return view;

  199.                 }


  200.                 public void notifyDate() {

  201.                         notifyDataSetChanged();

  202.                 }


  203.         }


  204.         public class ChatViewHolder {

  205.                 TextView wifi_name;// 網絡的名字,惟一區別WIFI網絡的名字

  206.                 TextView wifi_name_state;// 所發現的WIFI網絡信號強度

  207.         }


  208. }


複製代碼

十一、wifiAdmin類,提供了wifi操做的方法,WifiAdmin.java:
  1. package co.cm.fragement;


  2. import java.util.ArrayList;

  3. import java.util.List;


  4. import android.content.Context;

  5. import android.net.wifi.ScanResult;

  6. import android.net.wifi.WifiConfiguration;

  7. import android.net.wifi.WifiInfo;

  8. import android.net.wifi.WifiManager;

  9. import android.net.wifi.WifiManager.WifiLock;

  10. import android.util.Log;


  11. /**

  12. * @author yangyu

  13. *        wifiAdmin提供了wifi操做的方法

  14. */

  15. public class WifiAdmin {

  16.         private static WifiAdmin wifiAdmin;

  17.         

  18.         private WifiManager mWifiManager = null;

  19.         

  20.         private WifiInfo mWifiInfo = null;

  21.         

  22.         // 掃描出的網絡鏈接列表

  23.         private List<ScanResult> mWifiList = new ArrayList<ScanResult>();

  24.         

  25.         // 掃描出的網絡鏈接列表

  26.         private List<ScanResult> lastWifiList = new ArrayList<ScanResult>();

  27.         

  28.         // 網絡鏈接列表

  29.         private List<WifiConfiguration> mWifiConfiguration = null;

  30.         

  31.         private WifiLock mWifiLock = null;

  32.                 

  33.         // 上次網絡狀態

  34.         private int lastWifiState = 0;


  35.         //定義上下文Context

  36.         Context mContext;


  37.         public List<ScanResult> getLastWifiList() {

  38.                 return lastWifiList;

  39.         }


  40.         public void setLastWifiList(List<ScanResult> lastWifiList) {

  41.                 this.lastWifiList = lastWifiList;

  42.         }


  43.         public int getLastWifiState() {

  44.                 return lastWifiState;

  45.         }


  46.         public void setLastWifiState(int lastWifiState) {

  47.                 this.lastWifiState = lastWifiState;

  48.         }


  49.         public static WifiAdmin getWifi() {

  50.                 return wifiAdmin;

  51.         }


  52.         public Context getmContext() {

  53.                 return mContext;

  54.         }


  55.         public void setmContext(Context mContext) {

  56.                 this.mContext = mContext;

  57.         }


  58.         public static WifiAdmin getWifiAdmin() {

  59.                 if (wifiAdmin == null) {

  60.                         wifiAdmin = new WifiAdmin();


  61.                 }

  62.                 return wifiAdmin;

  63.         }


  64.         public void getWifiMeathod() {

  65.                 mWifiManager = (WifiManager) mContext

  66.                                 .getSystemService(mContext.WIFI_SERVICE);

  67.                 mWifiInfo = mWifiManager.getConnectionInfo();

  68.         }


  69.         /**

  70.          * 打開wifi

  71.          */

  72.         public void OpenWifi() {

  73.                 if (!mWifiManager.isWifiEnabled()) {

  74.                         mWifiManager.setWifiEnabled(true);

  75.                 } else {

  76.                         Log.i("111", "open 失敗");

  77.                 }

  78.         }


  79.         /**

  80.          * 關閉wifi 

  81.          */

  82.         public void CloseWife() {

  83.                 if (mWifiManager.isWifiEnabled()) {

  84.                         mWifiManager.setWifiEnabled(false);

  85.                 } else {

  86.                         Log.i("111", "close 失敗");

  87.                 }

  88.         }


  89.         /**

  90.          * 鎖定wifi

  91.          */

  92.         public void lockWifi() {

  93.                 mWifiLock.acquire();

  94.         }


  95.         public void rlockWifi() {

  96.                 if (mWifiLock.isHeld()) {

  97.                         mWifiLock.acquire();

  98.                 }

  99.         }


  100.         // 檢查當前wifi狀態WIFI網卡的狀態是由一系列的整形常量來表示的。

  101.         //1.WIFI_STATE_DISABLED : WIFI網卡不可用(1)

  102.         //2.WIFI_STATE_DISABLING : WIFI網卡正在關閉(0)

  103.         //3.WIFI_STATE_ENABLED : WIFI網卡可用(3)

  104.         //4.WIFI_STATE_ENABLING : WIFI網正在打開(2) (WIFI啓動須要一段時間)

  105.         //5.WIFI_STATE_UNKNOWN : 未知網卡狀態

  106.         public int checkState() {

  107.                 return mWifiManager.getWifiState();

  108.         }


  109.         /**

  110.          * 建立一個wifilock

  111.          */

  112.         public void Createwifilock() {

  113.                 mWifiLock = mWifiManager.createWifiLock("Testss");

  114.         }


  115.         /**

  116.          * 獲得配置好的網絡

  117.          * @return

  118.          */

  119.         public List<WifiConfiguration> GetConfinguration() {

  120.                 return mWifiConfiguration;

  121.         }


  122.         /**

  123.          * 鏈接配置好的指定ID的網絡

  124.          * @param index

  125.          */

  126.         public void ConnectConfiguration(int index) {

  127.                 if (index > mWifiConfiguration.size()) {

  128.                         return;

  129.                 }

  130.                 mWifiManager.enableNetwork(mWifiConfiguration.get(index).networkId,true);

  131.         }


  132.         /**

  133.          * 開始掃描網絡

  134.          */

  135.         public void StartScan() {

  136.                 mWifiManager.startScan();

  137.                 // 獲得掃描結果

  138.                 mWifiList = mWifiManager.getScanResults();

  139.                 // 獲得配置好的網絡鏈接

  140.                 mWifiConfiguration = mWifiManager.getConfiguredNetworks();

  141.         }


  142.         /**

  143.          * 獲得網絡列表

  144.          * @return

  145.          */

  146.         public List<ScanResult> GetWifiList() {

  147.                 mWifiManager.startScan();

  148.                 // 獲得掃描結果

  149.                 mWifiList = mWifiManager.getScanResults();

  150.                 return mWifiList;

  151.         }


  152.         public List<WifiConfiguration> getmWifiConfiguration() {

  153.                 return mWifiConfiguration;

  154.         }

  155.         

  156.         /**

  157.          * 查看掃描結果

  158.          */

  159.         public StringBuilder LookUpScan() {

  160.                 StringBuilder stringBuilder = new StringBuilder();

  161.                 for (int i = 0; i < mWifiList.size(); i++) {

  162.                         stringBuilder.append("Index_" + new Integer(i + 1).toString() + ":");

  163.                         // 將ScanResult信息轉換成一個字符串包

  164.                         // 其中把包括:BSSID、SSID、capabilities、frequency、level

  165.                         stringBuilder.append((mWifiList.get(i)).toString());

  166.                         stringBuilder.append("\n");

  167.                 }

  168.                 return stringBuilder;

  169.         }

  170.         

  171.         /**

  172.          * 獲得MAC地址

  173.          */

  174.         public String GetMacAddress() {

  175.                 return (mWifiInfo == null) ? "NULL" : mWifiInfo.getMacAddress();

  176.         }

  177.         

  178.         /**

  179.          * 獲得接入點的BSSID

  180.          */

  181.         public String GetBSSID() {

  182.                 return (mWifiInfo == null) ? "NULL" : mWifiInfo.getBSSID();

  183.         }

  184.         

  185.         /**

  186.          * 獲得IP地址

  187.          */

  188.         public int GetIPAddress() {

  189.                 return (mWifiInfo == null) ? 0 : mWifiInfo.getIpAddress();

  190.         }

  191.         

  192.         /**

  193.          * 獲得鏈接的ID

  194.          */

  195.         public int GetNetworkId() {

  196.                 return (mWifiInfo == null) ? 0 : mWifiInfo.getNetworkId();

  197.         }

  198.         

  199.         /**

  200.          * 獲得WifiInfo的全部信息包

  201.          */

  202.         public String GetWifiInfo() {

  203.                 return (mWifiInfo == null) ? "NULL" : mWifiInfo.toString();

  204.         }

  205.         

  206.         /**

  207.          * 添加一個網絡並鏈接

  208.          */

  209.         public void AddNetwork(WifiConfiguration wcg) {

  210.                 int wcgID = mWifiManager.addNetwork(wcg);

  211.                 mWifiManager.enableNetwork(wcgID, true);

  212.         }

  213.         

  214.         /**

  215.          * 斷開指定ID的網絡

  216.          */

  217.         public void DisconnectWifi(int netId) {

  218.                 mWifiManager.disableNetwork(netId);

  219.                 mWifiManager.disconnect();

  220.         }

  221. }

複製代碼

小結: 當咱們須要在一個界面中處理不少事情的時候,能夠推薦使用fragment,由於他會把咱們的activity分割成不少小塊,每一個小塊都有他的生命週期,很是方便,而有時咱們會用單例模式來存儲每一個頁面都有的東西。
3、Fragment實例講解二  3.1 項目的效果圖                                             3.2 項目結構目錄
 
  3.3 代碼具體編寫一、標題欄的佈局界面,title_view.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="fill_parent"

  4.     android:layout_height="50dip"

  5.     android:background="@drawable/title_bg"

  6.     android:orientation="horizontal" >


  7.     <Button

  8.         android:id="@+id/left_btn"

  9.         style="@style/Text.Title_Button"

  10.         android:layout_width="wrap_content"

  11.         android:layout_height="35dip"

  12.         android:layout_gravity="center_vertical"

  13.         android:background="@drawable/title_btn_back"

  14.         android:minWidth="60dip" />


  15.     <TextView

  16.         android:id="@+id/title_text"

  17.         style="@style/Text.Title"

  18.         android:layout_width="fill_parent"

  19.         android:layout_height="wrap_content"

  20.         android:layout_gravity="center_vertical"

  21.         android:layout_weight="1" />


  22.     <Button

  23.         android:id="@+id/right_btn"

  24.         style="@style/Text.Title_Button"

  25.         android:layout_width="wrap_content"

  26.         android:layout_height="35dip"

  27.         android:layout_gravity="center_vertical"

  28.         android:background="@drawable/title_btn"

  29.         android:minWidth="70dip" />


  30. </LinearLayout>

複製代碼

二、首頁的fragment頁面,這裏就列出一個,fragment_home.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="fill_parent"

  4.     android:layout_height="fill_parent"

  5.     android:orientation="vertical" >


  6.     <com.eoe.tampletfragment.view.TitleView

  7.         android:id="@+id/title"

  8.         android:layout_width="fill_parent"

  9.         android:layout_height="wrap_content" />


  10.     <TextView

  11.         android:id="@+id/fragment_home_text"

  12.         android:layout_width="fill_parent"

  13.         android:layout_height="wrap_content"

  14.         android:text="@string/fragment_home_text"

  15.         android:textSize="18sp" />


  16. </LinearLayout>

複製代碼

二、首頁的fragment頁面,這裏就列出一個,fragment_home.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="fill_parent"

  4.     android:layout_height="fill_parent"

  5.     android:orientation="vertical" >


  6.     <com.eoe.tampletfragment.view.TitleView

  7.         android:id="@+id/title"

  8.         android:layout_width="fill_parent"

  9.         android:layout_height="wrap_content" />


  10.     <TextView

  11.         android:id="@+id/fragment_home_text"

  12.         android:layout_width="fill_parent"

  13.         android:layout_height="wrap_content"

  14.         android:text="@string/fragment_home_text"

  15.         android:textSize="18sp" />


  16. </LinearLayout>

複製代碼

三、幫助Activity界面,activity_help.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="fill_parent"

  4.     android:layout_height="fill_parent"

  5.     android:background="@drawable/activity_bg"

  6.     android:orientation="vertical" >


  7.     <com.eoe.tampletfragment.view.TitleView

  8.         android:id="@+id/title"

  9.         android:layout_width="fill_parent"

  10.         android:layout_height="wrap_content" />


  11. </LinearLayout>

複製代碼

四、主頁面佈局,activity_main.xml:
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  3.     android:layout_width="fill_parent"

  4.     android:layout_height="fill_parent"

  5.     android:background="@drawable/activity_bg"

  6.     android:orientation="vertical" >


  7.     <fragment

  8.         android:id="@+id/fragment_home"

  9.         android:layout_width="fill_parent"

  10.         android:layout_height="fill_parent"

  11.         android:layout_weight="1"

  12.         class="com.eoe.tampletfragment.fragment.HomeFragment" />


  13.     <fragment

  14.         android:id="@+id/fragment_search"

  15.         android:layout_width="fill_parent"

  16.         android:layout_height="fill_parent"

  17.         android:layout_weight="1"

  18.         class="com.eoe.tampletfragment.fragment.SearchFragment" />


  19.     <fragment

  20.         android:id="@+id/fragment_settings"

  21.         android:layout_width="fill_parent"

  22.         android:layout_height="fill_parent"

  23.         android:layout_weight="1"

  24.         class="com.eoe.tampletfragment.fragment.SettingsFragment" />


  25.     <com.eoe.tampletfragment.fragment.FragmentIndicator

  26.         android:id="@+id/indicator"

  27.         android:layout_width="fill_parent"

  28.         android:layout_height="wrap_content"

  29.         android:background="@drawable/tab_footer_bg" />


  30. </LinearLayout>

複製代碼

詳細說明:  <1> 主頁面MainActivity繼承自FragmentActivity類,負責實現導航按鈕所對應頁面的顯示和隱藏。
(詳細實現見源碼)
  <2> 主頁面由底部導航欄和麪板組成。  <3> fragment標籤所對應Fragment的實現類。
  <4> com.eoe.tampletfragment.fragment.FragmentIndicator標籤所對應的是底部導航欄。   
五、自定義頂部工具欄,TitleView.java:
  1. package com.eoe.tampletfragment.view;


  2. import android.content.Context;

  3. import android.util.AttributeSet;

  4. import android.view.LayoutInflater;

  5. import android.view.View;

  6. import android.widget.Button;

  7. import android.widget.FrameLayout;

  8. import android.widget.TextView;


  9. import com.eoe.tampletfragment.R;


  10. /**

  11. * @author yangyu

  12. *        功能描述:自定義頂部工具欄

  13. */

  14. public class TitleView extends FrameLayout implements View.OnClickListener {


  15.         private Button mLeftBtn;

  16.         private Button mRightBtn;

  17.         private TextView mTitle;


  18.         private OnLeftButtonClickListener mOnLeftButtonClickListener;

  19.         private OnRightButtonClickListener mOnRightButtonClickListener;


  20.         public interface OnLeftButtonClickListener {

  21.                 public void onClick(View button);

  22.         }


  23.         public interface OnRightButtonClickListener {

  24.                 public void onClick(View button);

  25.         }


  26.         public void setLeftButton(String text, OnLeftButtonClickListener listener) {

  27.                 mLeftBtn.setText(text);

  28.                 mLeftBtn.setVisibility(View.VISIBLE);

  29.                 mOnLeftButtonClickListener = listener;

  30.         }

  31.         

  32.         public void setLeftButton(int stringID, OnLeftButtonClickListener listener) {

  33.                 mLeftBtn.setText(stringID);

  34.                 mLeftBtn.setVisibility(View.VISIBLE);

  35.                 mOnLeftButtonClickListener = listener;

  36.         }

  37.         

  38.         public void removeLeftButton() {

  39.                 mLeftBtn.setText("");

  40.                 mLeftBtn.setVisibility(View.INVISIBLE);

  41.                 mOnLeftButtonClickListener = null;

  42.         }

  43.         

  44.         public void hiddenLeftButton() {

  45.                 mLeftBtn.setVisibility(View.INVISIBLE);

  46.         }

  47.         

  48.         public void showLeftButton() {

  49.                 mLeftBtn.setVisibility(View.VISIBLE);

  50.         }

  51.         

  52.         public void setRightButton(String text, OnRightButtonClickListener listener) {

  53.                 mRightBtn.setText(text);

  54.                 mRightBtn.setVisibility(View.VISIBLE);

  55.                 mOnRightButtonClickListener = listener;

  56.         }

  57.         

  58.         public void setRightButton(int stringID, OnRightButtonClickListener listener) {

  59.                 mRightBtn.setText(stringID);

  60.                 mRightBtn.setVisibility(View.VISIBLE);

  61.                 mOnRightButtonClickListener = listener;

  62.         }

  63.         

  64.         public void removeRightButton() {

  65.                 mRightBtn.setText("");

  66.                 mRightBtn.setVisibility(View.INVISIBLE);

  67.                 mOnRightButtonClickListener = null;

  68.         }

  69.         

  70.         public void hiddenRightButton() {

  71.                 mRightBtn.setVisibility(View.INVISIBLE);

  72.         }

  73.         

  74.         public void showRightButton() {

  75.                 mRightBtn.setVisibility(View.VISIBLE);

  76.         }


  77.         public TitleView(Context context) {

  78.                 this(context, null);

  79.         }


  80.         public TitleView(Context context, AttributeSet attrs) {

  81.                 this(context, attrs, 0);

  82.         }


  83.         public TitleView(Context context, AttributeSet attrs, int defStyle) {

  84.                 super(context, attrs, defStyle);


  85.                 LayoutInflater inflater = (LayoutInflater) context

  86.                                 .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

  87.                 inflater.inflate(R.layout.title_view, this, true);


  88.                 mLeftBtn = (Button) findViewById(R.id.left_btn);

  89.                 mLeftBtn.setVisibility(View.INVISIBLE);

  90.                 mLeftBtn.setOnClickListener(this);

  91.                 mRightBtn = (Button) findViewById(R.id.right_btn);

  92.                 mRightBtn.setVisibility(View.INVISIBLE);

  93.                 mRightBtn.setOnClickListener(this);

  94.                 

  95.                 mTitle = (TextView) findViewById(R.id.title_text);

  96.                 mTitle.setVisibility(View.INVISIBLE);

  97.         }

  98.         

  99.         public void setTitle(String text) {

  100.                 mTitle.setVisibility(View.VISIBLE);

  101.                 mTitle.setText(text);

  102.         }

  103.         

  104.         public void setTitle(int stringID) {

  105.                 mTitle.setVisibility(View.VISIBLE);

  106.                 mTitle.setText(stringID);

  107.         }


  108.         @Override

  109.         public void onClick(View v) {

  110.                 switch (v.getId()) {

  111.                 case R.id.left_btn:

  112.                         if(mOnLeftButtonClickListener != null)

  113.                                 mOnLeftButtonClickListener.onClick(v);

  114.                         break;

  115.                 case R.id.right_btn:

  116.                         if(mOnRightButtonClickListener != null)

  117.                                 mOnRightButtonClickListener.onClick(v);

  118.                         break;

  119.                 }

  120.         }


  121. }


複製代碼

六、自定義底部工具欄,FragmentIndicator.java:
  1. package com.eoe.tampletfragment.fragment;


  2. import android.content.Context;

  3. import android.graphics.Color;

  4. import android.util.AttributeSet;

  5. import android.util.TypedValue;

  6. import android.view.Gravity;

  7. import android.view.View;

  8. import android.view.View.OnClickListener;

  9. import android.widget.ImageView;

  10. import android.widget.LinearLayout;

  11. import android.widget.TextView;


  12. import com.eoe.tampletfragment.R;


  13. /**

  14. * @author yangyu

  15. *        功能描述:自定義底部工具欄

  16. */

  17. public class FragmentIndicator extends LinearLayout implements OnClickListener {


  18.         private int mDefaultIndicator = 0;


  19.         private static int mCurIndicator;


  20.         private static View[] mIndicators;


  21.         private OnIndicateListener mOnIndicateListener;


  22.         private static final String TAG_ICON_0 = "icon_tag_0";

  23.         private static final String TAG_ICON_1 = "icon_tag_1";

  24.         private static final String TAG_ICON_2 = "icon_tag_2";


  25.         private static final String TAG_TEXT_0 = "text_tag_0";

  26.         private static final String TAG_TEXT_1 = "text_tag_1";

  27.         private static final String TAG_TEXT_2 = "text_tag_2";

  28.         

  29.         private static final int COLOR_UNSELECT = Color.argb(100, 0xff, 0xff, 0xff);

  30.         private static final int COLOR_SELECT = Color.WHITE;


  31.         private FragmentIndicator(Context context) {

  32.                 super(context);

  33.         }


  34.         public FragmentIndicator(Context context, AttributeSet attrs) {

  35.                 super(context, attrs);


  36.                 mCurIndicator = mDefaultIndicator;

  37.                 setOrientation(LinearLayout.HORIZONTAL);

  38.                 init();

  39.         }


  40.         private View createIndicator(int iconResID, int stringResID, int stringColor, 

  41.                         String iconTag, String textTag) {

  42.                 LinearLayout view = new LinearLayout(getContext());

  43.                 view.setOrientation(LinearLayout.VERTICAL);

  44.                 view.setLayoutParams(new LinearLayout.LayoutParams(

  45.                                 LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1));

  46.                 view.setGravity(Gravity.CENTER_HORIZONTAL);


  47.                 ImageView iconView = new ImageView(getContext());

  48.                 iconView.setTag(iconTag);

  49.                 iconView.setLayoutParams(new LinearLayout.LayoutParams(

  50.                                 LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1));

  51.                 iconView.setImageResource(iconResID);


  52.                 TextView textView = new TextView(getContext());

  53.                 textView.setTag(textTag);

  54.                 textView.setLayoutParams(new LinearLayout.LayoutParams(

  55.                                 LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1));

  56.                 textView.setTextColor(stringColor);

  57.                 textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 16);

  58.                 textView.setText(stringResID);


  59.                 view.addView(iconView);

  60.                 view.addView(textView);


  61.                 return view;


  62.         }


  63.         private void init() {

  64.                 mIndicators = new View[3];

  65.                 mIndicators[0] = createIndicator(R.drawable.ic_home_focused,

  66.                                 R.string.tab_home, COLOR_SELECT, TAG_ICON_0, TAG_TEXT_0);

  67.                 mIndicators[0].setBackgroundResource(R.drawable.indic_select);

  68.                 mIndicators[0].setTag(Integer.valueOf(0));

  69.                 mIndicators[0].setOnClickListener(this);

  70.                 addView(mIndicators[0]);

  71.                 mIndicators[1] = createIndicator(R.drawable.ic_search_normal,

  72.                                 R.string.tab_search, COLOR_UNSELECT, TAG_ICON_1, TAG_TEXT_1);

  73.                 mIndicators[1].setBackgroundColor(Color.alpha(0));

  74.                 mIndicators[1].setTag(Integer.valueOf(1));

  75.                 mIndicators[1].setOnClickListener(this);

  76.                 addView(mIndicators[1]);

  77.                 mIndicators[2] = createIndicator(R.drawable.ic_settings_normal,

  78.                                 R.string.tab_settings, COLOR_UNSELECT, TAG_ICON_2, TAG_TEXT_2);

  79.                 mIndicators[2].setBackgroundColor(Color.alpha(0));

  80.                 mIndicators[2].setTag(Integer.valueOf(2));

  81.                 mIndicators[2].setOnClickListener(this);

  82.                 addView(mIndicators[2]);

  83.         }


  84.         public static void setIndicator(int which) {

  85.                 // clear previous status.

  86.                 mIndicators[mCurIndicator].setBackgroundColor(Color.alpha(0));

  87.                 ImageView prevIcon;

  88.                 TextView prevText;

  89.                 switch(mCurIndicator) {

  90.                 case 0:

  91.                         prevIcon =(ImageView) mIndicators[mCurIndicator].findViewWithTag(TAG_ICON_0);

  92.                         prevIcon.setImageResource(R.drawable.ic_home_normal);

  93.                         prevText = (TextView) mIndicators[mCurIndicator].findViewWithTag(TAG_TEXT_0);

  94.                         prevText.setTextColor(COLOR_UNSELECT);

  95.                         break;

  96.                 case 1:

  97.                         prevIcon =(ImageView) mIndicators[mCurIndicator].findViewWithTag(TAG_ICON_1);

  98.                         prevIcon.setImageResource(R.drawable.ic_search_normal);

  99.                         prevText = (TextView) mIndicators[mCurIndicator].findViewWithTag(TAG_TEXT_1);

  100.                         prevText.setTextColor(COLOR_UNSELECT);

  101.                         break;

  102.                 case 2:

  103.                         prevIcon =(ImageView) mIndicators[mCurIndicator].findViewWithTag(TAG_ICON_2);

  104.                         prevIcon.setImageResource(R.drawable.ic_settings_normal);

  105.                         prevText = (TextView) mIndicators[mCurIndicator].findViewWithTag(TAG_TEXT_2);

  106.                         prevText.setTextColor(COLOR_UNSELECT);

  107.                         break;

  108.                 }

  109.                 

  110.                 // update current status.

  111.                 mIndicators[which].setBackgroundResource(R.drawable.indic_select);

  112.                 ImageView currIcon;

  113.                 TextView currText;

  114.                 switch(which) {

  115.                 case 0:

  116.                         currIcon =(ImageView) mIndicators[which].findViewWithTag(TAG_ICON_0);

  117.                         currIcon.setImageResource(R.drawable.ic_home_focused);

  118.                         currText = (TextView) mIndicators[which].findViewWithTag(TAG_TEXT_0);

  119.                         currText.setTextColor(COLOR_SELECT);

  120.                         break;

  121.                 case 1:

  122.                         currIcon =(ImageView) mIndicators[which].findViewWithTag(TAG_ICON_1);

  123.                         currIcon.setImageResource(R.drawable.ic_search_focused);

  124.                         currText = (TextView) mIndicators[which].findViewWithTag(TAG_TEXT_1);

  125.                         currText.setTextColor(COLOR_SELECT);

  126.                         break;

  127.                 case 2:

  128.                         currIcon =(ImageView) mIndicators[which].findViewWithTag(TAG_ICON_2);

  129.                         currIcon.setImageResource(R.drawable.ic_settings_focused);

  130.                         currText = (TextView) mIndicators[which].findViewWithTag(TAG_TEXT_2);

  131.                         currText.setTextColor(COLOR_SELECT);

  132.                         break;

  133.                 }

  134.                 

  135.                 mCurIndicator = which;

  136.         }


  137.         public interface OnIndicateListener {

  138.                 public void onIndicate(View v, int which);

  139.         }


  140.         public void setOnIndicateListener(OnIndicateListener listener) {

  141.                 mOnIndicateListener = listener;

  142.         }


  143.         @Override

  144.         public void onClick(View v) {

  145.                 if (mOnIndicateListener != null) {

  146.                         int tag = (Integer) v.getTag();

  147.                         switch (tag) {

  148.                         case 0:

  149.                                 if (mCurIndicator != 0) {

  150.                                         mOnIndicateListener.onIndicate(v, 0);

  151.                                         setIndicator(0);

  152.                                 }

  153.                                 break;

  154.                         case 1:

  155.                                 if (mCurIndicator != 1) {

  156.                                         mOnIndicateListener.onIndicate(v, 1);

  157.                                         setIndicator(1);

  158.                                 }

  159.                                 break;

  160.                         case 2:

  161.                                 if (mCurIndicator != 2) {

  162.                                         mOnIndicateListener.onIndicate(v, 2);

  163.                                         setIndicator(2);

  164.                                 }

  165.                                 break;

  166.                         default:

  167.                                 break;

  168.                         }

  169.                 }

  170.         }

  171. }


複製代碼

七、首頁fragment頁面,HomeFragment.java:
  1. package com.eoe.tampletfragment.fragment;


  2. import android.content.Intent;

  3. import android.os.Bundle;

  4. import android.support.v4.app.Fragment;

  5. import android.support.v4.app.FragmentActivity;

  6. import android.view.LayoutInflater;

  7. import android.view.View;

  8. import android.view.ViewGroup;

  9. import android.widget.TextView;


  10. import com.eoe.tampletfragment.HelpActivity;

  11. import com.eoe.tampletfragment.R;

  12. import com.eoe.tampletfragment.view.TitleView;

  13. import com.eoe.tampletfragment.view.TitleView.OnLeftButtonClickListener;

  14. import com.eoe.tampletfragment.view.TitleView.OnRightButtonClickListener;


  15. /**

  16. * @author yangyu

  17. *        功能描述:首頁fragment頁面

  18. */

  19. public class HomeFragment extends Fragment {


  20.         private View mParent;

  21.         

  22.         private FragmentActivity mActivity;

  23.         

  24.         private TitleView mTitle;

  25.         

  26.         private TextView mText;

  27.         

  28.         /**

  29.          * Create a new instance of DetailsFragment, initialized to show the text at

  30.          * 'index'.

  31.          */

  32.         public static HomeFragment newInstance(int index) {

  33.                 HomeFragment f = new HomeFragment();


  34.                 // Supply index input as an argument.

  35.                 Bundle args = new Bundle();

  36.                 args.putInt("index", index);

  37.                 f.setArguments(args);


  38.                 return f;

  39.         }


  40.         public int getShownIndex() {

  41.                 return getArguments().getInt("index", 0);

  42.         }


  43.         @Override

  44.         public View onCreateView(LayoutInflater inflater, ViewGroup container,

  45.                         Bundle savedInstanceState) {

  46.                 View view = inflater.inflate(R.layout.fragment_home, container, false);

  47.                 return view;

  48.         }


  49.         @Override

  50.         public void onActivityCreated(Bundle savedInstanceState) {

  51.                 super.onActivityCreated(savedInstanceState);

  52.                 mActivity = getActivity();

  53.                 mParent = getView();


  54.                 mTitle = (TitleView) mParent.findViewById(R.id.title);

  55.                 mTitle.setTitle(R.string.title_home);

  56.                 mTitle.setLeftButton(R.string.exit, new OnLeftButtonClickListener(){


  57.                         @Override

  58.                         public void onClick(View button) {

  59.                                 mActivity.finish();

  60.                         }

  61.                         

  62.                 });

  63.                 mTitle.setRightButton(R.string.help, new OnRightButtonClickListener() {


  64.                         @Override

  65.                         public void onClick(View button) {

  66.                                 goHelpActivity();

  67.                         }

  68.                 });

  69.                 

  70.                 mText = (TextView) mParent.findViewById(R.id.fragment_home_text);


  71.         }

  72.         

  73.         private void goHelpActivity() {

  74.                 Intent intent = new Intent(mActivity, HelpActivity.class);

  75.                 startActivity(intent);

  76.         }


  77.         @Override

  78.         public void onHiddenChanged(boolean hidden) {

  79.                 super.onHiddenChanged(hidden);

  80.         }


  81.         @Override

  82.         public void onDestroy() {

  83.                 super.onDestroy();

  84.         }


  85. }


複製代碼

八、Activity幫助界面,HelpActivity.java:
  1. package com.eoe.tampletfragment;


  2. import android.os.Bundle;

  3. import android.support.v4.app.FragmentActivity;

  4. import android.view.Window;


  5. /**

  6. * @author yangyu

  7. *        功能描述:幫助Activity界面

  8. */

  9. public class HelpActivity extends FragmentActivity {


  10.         @Override

  11.         protected void onCreate(Bundle savedInstanceState) {

  12.                 super.onCreate(savedInstanceState);

  13.                 requestWindowFeature(Window.FEATURE_NO_TITLE);        

  14.                 setContentView(R.layout.activity_help);

  15.         }


  16. }


複製代碼

九、Activity主界面,MainActivity.java:
  1. package com.eoe.tampletfragment;


  2. import android.os.Bundle;

  3. import android.support.v4.app.Fragment;

  4. import android.support.v4.app.FragmentActivity;

  5. import android.view.View;

  6. import android.view.Window;


  7. import com.eoe.tampletfragment.fragment.FragmentIndicator;

  8. import com.eoe.tampletfragment.fragment.FragmentIndicator.OnIndicateListener;


  9. /**

  10. * @author yangyu

  11. *        功能描述:主Activity類,繼承自FragmentActivity

  12. */

  13. public class MainActivity extends FragmentActivity {


  14.         public static Fragment[] mFragments;


  15.         @Override

  16.         protected void onCreate(Bundle savedInstanceState) {

  17.                 super.onCreate(savedInstanceState);

  18.                 requestWindowFeature(Window.FEATURE_NO_TITLE);

  19.                 setContentView(R.layout.activity_main);


  20.                 setFragmentIndicator(0);

  21.                 

  22.         }


  23.         /**

  24.          * 初始化fragment

  25.          */

  26.         private void setFragmentIndicator(int whichIsDefault) {

  27.                 mFragments = new Fragment[3];

  28.                 mFragments[0] = getSupportFragmentManager().findFragmentById(R.id.fragment_home);

  29.                 mFragments[1] = getSupportFragmentManager().findFragmentById(R.id.fragment_search);

  30.                 mFragments[2] = getSupportFragmentManager().findFragmentById(R.id.fragment_settings);

  31.                 getSupportFragmentManager().beginTransaction().hide(mFragments[0])

  32.                                 .hide(mFragments[1]).hide(mFragments[2]).show(mFragments[whichIsDefault]).commit();


  33.                 FragmentIndicator mIndicator = (FragmentIndicator) findViewById(R.id.indicator);

  34.                 FragmentIndicator.setIndicator(whichIsDefault);

  35.                 mIndicator.setOnIndicateListener(new OnIndicateListener() {

  36.                         @Override

  37.                         public void onIndicate(View v, int which) {

  38.                                 getSupportFragmentManager().beginTransaction()

  39.                                                 .hide(mFragments[0]).hide(mFragments[1])

  40.                                                 .hide(mFragments[2]).show(mFragments[which]).commit();

  41.                         }

  42.                 });

  43.         }


  44.         @Override

  45.         protected void onResume() {

  46.                 super.onResume();

  47.         }

  48.         

  49.         @Override

  50.         protected void onPause() {

  51.                 super.onPause();

  52.         }

  53.         

  54. }


複製代碼

  MyFragment01.zip (153.64 KB, 下載次數: 772) 
  MyFragment02.zip (1.39 MB, 下載次數: 3712) 
相關文章
相關標籤/搜索