<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@drawable/tab_bg" >
<RelativeLayout
android:id="@+id/message_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/message_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/message_unselected" />
<TextView
android:id="@+id/message_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="消息"
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/contacts_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/contacts_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/contacts_unselected" />
<TextView
android:id="@+id/contacts_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="聯繫人"
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/news_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/news_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/news_unselected" />
<TextView
android:id="@+id/news_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="動態"
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/setting_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/setting_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/setting_unselected" />
<TextView
android:id="@+id/setting_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="設置"
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
這段佈局代碼雖然有點長,但其實主要就分爲兩部分。第一個部分就是FrameLayout,這裏只是給FrameLayout的id設置成content,並無在裏面添加任何具體的內容,由於具體的內容是要在後面動態進行添加的。第二個部分就是FrameLayout下面的LinearLayout,這個LinearLayout中包含的就是整個相似於TabHost的佈局。能夠看到,咱們將這個LinearLayout又等分紅了四份,每一份中都會顯示一個ImageView和一個TextView。ImageView用於顯示當前Tab的圖標,TextView用於顯示當前Tab的標題,這個效果就會和QQ很是得相似。android
既然是等分紅了四分,那接下來咱們天然要去分別實現四個Fragment和它們的佈局了。新建一個message_layout.xml做爲消息界面的佈局,代碼以下所示:ide
<?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,代碼以下所示:this
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
<?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,代碼以下所示:
/**
* 項目的主Activity,全部的Fragment都嵌入在這裏。
*
* @author guolin
*/
public class MainActivity extends Activity implements OnClickListener {
/**
* 用於展現消息的Fragment
*/
private MessageFragment messageFragment;
/**
* 用於展現聯繫人的Fragment
*/
private ContactsFragment contactsFragment;
/**
* 用於展現動態的Fragment
*/
private NewsFragment newsFragment;
/**
* 用於展現設置的Fragment
*/
private SettingFragment settingFragment;
/**
* 消息界面佈局
*/
private View messageLayout;
/**
* 聯繫人界面佈局
*/
private View contactsLayout;
/**
* 動態界面佈局
*/
private View newsLayout;
/**
* 設置界面佈局
*/
private View settingLayout;
/**
* 在Tab佈局上顯示消息圖標的控件
*/
private ImageView messageImage;
/**
* 在Tab佈局上顯示聯繫人圖標的控件
*/
private ImageView contactsImage;
/**
* 在Tab佈局上顯示動態圖標的控件
*/
private ImageView newsImage;
/**
* 在Tab佈局上顯示設置圖標的控件
*/
private ImageView settingImage;
/**
* 在Tab佈局上顯示消息標題的控件
*/
private TextView messageText;
/**
* 在Tab佈局上顯示聯繫人標題的控件
*/
private TextView contactsText;
/**
* 在Tab佈局上顯示動態標題的控件
*/
private TextView newsText;
/**
* 在Tab佈局上顯示設置標題的控件
*/
private TextView settingText;
/**
* 用於對Fragment進行管理
*/
private FragmentManager fragmentManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
// 初始化佈局元素
initViews();
fragmentManager = getFragmentManager();
// 第一次啓動時選中第0個tab
setTabSelection(0);
}
/**
* 在這裏獲取到每一個須要用到的控件的實例,並給它們設置好必要的點擊事件。
*/
private void initViews() {
messageLayout = findViewById(R.id.message_layout);
contactsLayout = findViewById(R.id.contacts_layout);
newsLayout = findViewById(R.id.news_layout);
settingLayout = findViewById(R.id.setting_layout);
messageImage = (ImageView) findViewById(R.id.message_image);
contactsImage = (ImageView) findViewById(R.id.contacts_image);
newsImage = (ImageView) findViewById(R.id.news_image);
settingImage = (ImageView) findViewById(R.id.setting_image);
messageText = (TextView) findViewById(R.id.message_text);
contactsText = (TextView) findViewById(R.id.contacts_text);
newsText = (TextView) findViewById(R.id.news_text);
settingText = (TextView) findViewById(R.id.setting_text);
messageLayout.setOnClickListener(this);
contactsLayout.setOnClickListener(this);
newsLayout.setOnClickListener(this);
settingLayout.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.message_layout:
// 當點擊了消息tab時,選中第1個tab
setTabSelection(0);
break;
case R.id.contacts_layout:
// 當點擊了聯繫人tab時,選中第2個tab
setTabSelection(1);
break;
case R.id.news_layout:
// 當點擊了動態tab時,選中第3個tab
setTabSelection(2);
break;
case R.id.setting_layout:
// 當點擊了設置tab時,選中第4個tab
setTabSelection(3);
break;
default:
break;
}
}
/**
* 根據傳入的index參數來設置選中的tab頁。
*
* @param index
* 每一個tab頁對應的下標。0表示消息,1表示聯繫人,2表示動態,3表示設置。
*/
private void setTabSelection(int index) {
// 每次選中以前先清楚掉上次的選中狀態
clearSelection();
// 開啓一個Fragment事務
FragmentTransaction transaction = fragmentManager.beginTransaction();
// 先隱藏掉全部的Fragment,以防止有多個Fragment顯示在界面上的狀況
hideFragments(transaction);
switch (index) {
case 0:
// 當點擊了消息tab時,改變控件的圖片和文字顏色
messageImage.setImageResource(R.drawable.message_selected);
messageText.setTextColor(Color.WHITE);
if (messageFragment == null) {
// 若是MessageFragment爲空,則建立一個並添加到界面上
messageFragment = new MessageFragment();
transaction.add(R.id.content, messageFragment);
} else {
// 若是MessageFragment不爲空,則直接將它顯示出來
transaction.show(messageFragment);
}
break;
case 1:
// 當點擊了聯繫人tab時,改變控件的圖片和文字顏色
contactsImage.setImageResource(R.drawable.contacts_selected);
contactsText.setTextColor(Color.WHITE);
if (contactsFragment == null) {
// 若是ContactsFragment爲空,則建立一個並添加到界面上
contactsFragment = new ContactsFragment();
transaction.add(R.id.content, contactsFragment);
} else {
// 若是ContactsFragment不爲空,則直接將它顯示出來
transaction.show(contactsFragment);
}
break;
case 2:
// 當點擊了動態tab時,改變控件的圖片和文字顏色
newsImage.setImageResource(R.drawable.news_selected);
newsText.setTextColor(Color.WHITE);
if (newsFragment == null) {
// 若是NewsFragment爲空,則建立一個並添加到界面上
newsFragment = new NewsFragment();
transaction.add(R.id.content, newsFragment);
} else {
// 若是NewsFragment不爲空,則直接將它顯示出來
transaction.show(newsFragment);
}
break;
case 3:
default:
// 當點擊了設置tab時,改變控件的圖片和文字顏色
settingImage.setImageResource(R.drawable.setting_selected);
settingText.setTextColor(Color.WHITE);
if (settingFragment == null) {
// 若是SettingFragment爲空,則建立一個並添加到界面上
settingFragment = new SettingFragment();
transaction.add(R.id.content, settingFragment);
} else {
// 若是SettingFragment不爲空,則直接將它顯示出來
transaction.show(settingFragment);
}
break;
}
transaction.commit();
}
/**
* 清除掉全部的選中狀態。
*/
private void clearSelection() {
messageImage.setImageResource(R.drawable.message_unselected);
messageText.setTextColor(Color.parseColor("#82858b"));
contactsImage.setImageResource(R.drawable.contacts_unselected);
contactsText.setTextColor(Color.parseColor("#82858b"));
newsImage.setImageResource(R.drawable.news_unselected);
newsText.setTextColor(Color.parseColor("#82858b"));
settingImage.setImageResource(R.drawable.setting_unselected);
settingText.setTextColor(Color.parseColor("#82858b"));
}
/**
* 將全部的Fragment都置爲隱藏狀態。
*
* @param transaction
* 用於對Fragment執行操做的事務
*/
private void hideFragments(FragmentTransaction transaction) {
if (messageFragment != null) {
transaction.hide(messageFragment);
}
if (contactsFragment != null) {
transaction.hide(contactsFragment);
}
if (newsFragment != null) {
transaction.hide(newsFragment);
}
if (settingFragment != null) {
transaction.hide(settingFragment);
}
}
}
這個類中的註釋已經寫得很是詳細了,下面我再帶你們簡單梳理一遍。在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()方法來完成的,只是傳入了不一樣的參數。