如今Fragment的應用真的是愈來愈普遍了,以前Android在3.0版本加入Fragment的時候,主要是爲了解決Android Pad屏幕比較大,空間不能充分利用的問題,但如今即便只是在手機上,也有不少的場景能夠運用到Fragment了,今天咱們就來學習其中一個特別棒的應用技巧。html
不少手機應用都會有一個很是相似的功能,即屏幕的下方顯示一行Tab標籤選項,點擊不一樣的標籤就能夠切換到不一樣的界面,如如下幾個應用所示:java
上面三個應用從左到右分別是QQ、新浪微博和支付寶錢包,可見,這種底部標籤式的佈局策略真的很是常見。android
那麼話說回來,這種效果究竟是如何的呢?熟悉Android的朋友必定都會知道,很簡單嘛,使用TabHost就OK了!可是卻不知,TabHost並不是是那麼的簡單,它的可擴展性很是的差,不能隨意地定製Tab項顯示的內容,並且運行還要依賴於ActivityGroup。ActivityGroup本來主要是用於爲每個TabHost的子項管理一個單獨的Activity,但目前已經被廢棄了。爲何呢?固然就是由於Fragment的出現了!查看Android官方文檔中ActivityGroup的描述,以下所示:編程
能夠看到,在API 13的時候Android就已經將ActivityGroup廢棄掉了,而且官方推薦的替代方式就是使用Fragment,由於它使用起來更加的靈活。那麼剩下的問題就是如何藉助Fragment來完成相似於TabHost通常的效果了,所以咱們天然要動起手來了。ide
在開始以前,首先你必須已經瞭解Fragment的用法了,若是你對Fragment還比較陌生的話,建議先去閱讀我前面的一篇文章 Android Fragment徹底解析,關於碎片你所需知道的一切 。佈局
另外,咱們還應該準備好程序所須要的資源,好比說每個Tab項中所用到的圖片。我已經事先從QQ裏截好了幾張圖做爲這個項目的資源,稍後會連同源碼一塊兒給出。學習
新建一個項目,起名就叫FragmentDemo,這裏我使用的是4.0的API。this
下面開始編程工做,這裏咱們首先須要去編寫一個相似於QQ的主界面,固然只會去編寫界面最下方的TabHost部分,而不會編寫上面的內容界面部分,由於內容界面是應該寫在Fragment的佈局裏的。打開或新建activity_main.xml做爲程序的主佈局文件,在裏面加入以下代碼:spa
這段佈局代碼雖然有點長,但其實主要就分爲兩部分。第一個部分就是FrameLayout,這裏只是給FrameLayout的id設置成content,並無在裏面添加任何具體的內容,由於具體的內容是要在後面動態進行添加的。第二個部分就是FrameLayout下面的LinearLayout,這個LinearLayout中包含的就是整個相似於TabHost的佈局。能夠看到,咱們將這個LinearLayout又等分紅了四份,每一份中都會顯示一個ImageView和一個TextView。ImageView用於顯示當前Tab的圖標,TextView用於顯示當前Tab的標題,這個效果就會和QQ很是得相似。.net
既然是等分紅了四分,那接下來咱們天然要去分別實現四個Fragment和它們的佈局了。新建一個message_layout.xml做爲消息界面的佈局,代碼以下所示:
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical" >
-
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:src="@drawable/message_selected" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:padding="10dp"
- android:text="這是消息界面"
- android:textSize="20sp" />
- </LinearLayout>
-
- </RelativeLayout>
這個佈局就相對簡單多了,只是在屏幕的正中央顯示一個消息圖標,以及一段文字。
而後要去建立對應這個佈局的Fragment。新建MessageFragment繼承自Fragment,代碼以下所示:
- public class MessageFragment extends Fragment {
-
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- View messageLayout = inflater.inflate(R.layout.message_layout, container, false);
- return messageLayout;
- }
-
- }
後面就是依葫蘆畫瓢,把其它幾個Fragment以及對應的佈局建立出來。新建contacts_layout.xml做爲聯繫人界面的佈局,代碼以下所示:
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical" >
-
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:src="@drawable/contacts_selected" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:padding="10dp"
- android:text="這是聯繫人界面"
- android:textSize="20sp" />
- </LinearLayout>
-
- </RelativeLayout>
再新建ContactsFragment繼承自Fragment,代碼以下所示:
- public class ContactsFragment extends Fragment {
-
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- View contactsLayout = inflater.inflate(R.layout.contacts_layout,
- container, false);
- return contactsLayout;
- }
-
- }
而後新建news_layout.xml做爲動態界面的佈局,代碼以下所示:
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical" >
-
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:src="@drawable/news_selected" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:padding="10dp"
- android:text="這是動態界面"
- android:textSize="20sp" />
- </LinearLayout>
-
- </RelativeLayout>
再新建NewsFragment繼承自Fragment,代碼以下所示:
- public class NewsFragment extends Fragment {
-
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- View newsLayout = inflater.inflate(R.layout.news_layout, container,
- false);
- return newsLayout;
- }
-
- }
最後新建setting_layout.xml做爲設置界面的佈局,代碼以下所示:
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical" >
-
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:src="@drawable/setting_selected" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:padding="10dp"
- android:text="這是設置界面"
- android:textSize="20sp" />
- </LinearLayout>
-
- </RelativeLayout>
再新建SettingFragment繼承自Fragment,代碼以下所示:
- public class SettingFragment extends Fragment {
-
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- View settingLayout = inflater.inflate(R.layout.setting_layout,
- container, false);
- return settingLayout;
- }
-
- }
這樣咱們就把每個Fragment,以及它們所對應的佈局文件都建立好了。接下來也就是最關鍵的步驟了,打開或新建MainActivity做爲主Activity,代碼以下所示:
這個類中的註釋已經寫得很是詳細了,下面我再帶你們簡單梳理一遍。在onCreate()方法中先是調用了initViews()來獲取每一個控件的實例,並給相應的控件設置好點擊事件,而後調用setTabSelection()方法設置默認的選中項,這裏傳入的0說明默認選中第1個Tab項。
那麼setTabSelection()方法中又是如何處理的呢?能夠看到,首先第一步是調用clearSelection()方法來清理掉以前的選中狀態,而後開啓一個Fragment事務,並隱藏掉全部的Fragment,以防止有多個Fragment顯示在界面上。接下來根據傳入的index參數判斷出選中的是哪個Tab項,並改變該Tab項的圖標和文字顏色,而後將相應的Fragment添加到界面上。這裏注意一個細節,咱們添加Fragment的時候並無使用replace()方法,而是會先判斷一下該Fragment是否爲空,若是是空的則調用add()方法添加一個進來,若是不是空的則直接調用show()方法顯示出來便可。那麼爲何沒有使用replace()方法呢?這是由於replace()方法會將被替換掉的那個Fragment完全地移除掉,該Fragment的生命週期就結束了。當再次點擊剛纔那個Tab項的時候,就會讓該Fragment的生命週期從新開始,onCreate()、onCreateView()等方法都會從新執行一遍。這顯然不是咱們想要的,也和ActivityGroup的工做原理不符,所以最好的解決方案就是使用hide()和show()方法來隱藏和顯示Fragment,這就不會讓Fragment的生命週期重走一遍了。
設置完默認選中項後,咱們固然還能夠經過點擊Tab項來自由地切換界面,這就會進入到onClick()方法中。onClick()方法中的邏輯判斷很是簡單,當點擊了消息標籤時就會選中第1個tab項,點擊聯繫人標籤時就會選中第2個tab項,點擊動態標籤時就會選中第3個tab項,點擊設置標籤時就會選中第4個tab項。都是經過調用setTabSelection()方法來完成的,只是傳入了不一樣的參數。
好了,這樣咱們就將所有的代碼都編寫完成了,下面就來運行一下吧。整個Tab的界面有點相似於QQ的感受,而且能夠經過點擊不一樣的Tab來切換界面,以下圖所示:
另外,這個Tab界面即便在橫屏的狀況下也有不錯的適用性哦,以下圖所示:
這樣,咱們就成功使用Fragment編寫出了和TabHost同樣的效果。每一個界面的具體邏輯就能夠寫在相應的Fragment裏,效果和以前寫在Activity裏是差很少的。如此一來,咱們終於能夠和那個被廢棄的ActivityGroup說再見了!
好了,今天的講解到此結束,有疑問的朋友請在下面留言。
源碼下載,請點擊這裏
原文:http://blog.csdn.net/guolin_blog/article/details/13171191