天天看點

Android 4.0 Launcher源碼分析系列(一)

從今天起傻蛋打算做一個系列文章,對最新的Android 4.0 系統中的Launcher,也就是Android 4.0原生的桌面程式,進行一個深入淺出的分析,進而引領Android系統的程式設計愛好者對 Launcher的設計思想,實作方式來做一個研究,進而能夠通過這個執行個體最掌握到目前世界領先的設計方法,同時在程式中加入我們的一些新的實作。衆所周知,對一些優秀源代碼的分析,是提高程式設計水準的一條便捷的方式,希望本系列文章能夠給大家帶來一定的啟發,同時歡迎大家和作者一起讨論,作者的微網誌是:http://weibo.com/zuiniuwang/

先從整體上對Launcher布局作一個分析,讓我們通過檢視Launcher.xml 和使用hierarchyviewer布局檢視工具兩者結合的方法來對Launcher的整體結構有個了解。通過hierarchyviewer來對整個桌面做個截圖,如下:

Android 4.0 Launcher源碼分析系列(一)

放大後如下所示: 可以看到整個桌面包含的元素,最上面是Google的搜尋框,下面是一個始終插件,然後是圖示,再有就是一個分隔線,最後是dock。請注意,桌面程式其實并不包含桌面桌面,桌面桌面其實是由 WallpaperManagerService來提供,整個桌面其實是疊加在整個桌面桌面上的另外一個層。

Android 4.0 Launcher源碼分析系列(一)

點選檢視大圖

整個Launcher.xml布局檔案如下:

  1. <com.android.launcher2.DragLayer 
  2.     xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" 
  4.     android:id="@+id/drag_layer" 
  5.     android:layout_width="match_parent" 
  6.     android:layout_height="match_parent"> 
  7.     <!-- Keep these behind the workspace so that they are not visible when 
  8.          we go into AllApps --> 
  9.     <include 
  10.         android:id="@+id/dock_divider" 
  11.         layout="@layout/workspace_divider" 
  12.         android:layout_width="match_parent" 
  13.         android:layout_height="wrap_content" 
  14.         android:layout_marginBottom="@dimen/button_bar_height" 
  15.         android:layout_gravity="bottom"  /> 
  16.     <include 
  17.         android:id="@+id/paged_view_indicator" 
  18.         layout="@layout/scroll_indicator" 
  19.         android:layout_width="wrap_content" 
  20.         android:layout_height="wrap_content" 
  21.         android:layout_gravity="bottom" 
  22.         android:layout_marginBottom="@dimen/button_bar_height"  /> 
  23.     <!-- The workspace contains 5 screens of cells --> 
  24.     <com.android.launcher2.Workspace 
  25.         android:id="@+id/workspace" 
  26.         android:layout_width="match_parent" 
  27.         android:layout_height="match_parent" 
  28.         android:paddingTop="@dimen/qsb_bar_height_inset" 
  29.         android:paddingBottom="@dimen/button_bar_height" 
  30.         launcher:defaultScreen="2" 
  31.         launcher:cellCountX="4" 
  32.         launcher:cellCountY="4" 
  33.         launcher:pageSpacing="@dimen/workspace_page_spacing" 
  34.         launcher:scrollIndicatorPaddingLeft="@dimen/workspace_divider_padding_left" 
  35.         launcher:scrollIndicatorPaddingRight="@dimen/workspace_divider_padding_right"> 
  36.         <include android:id="@+id/cell1" layout="@layout/workspace_screen"  /> 
  37.         <include android:id="@+id/cell2" layout="@layout/workspace_screen"  /> 
  38.         <include android:id="@+id/cell3" layout="@layout/workspace_screen"  /> 
  39.         <include android:id="@+id/cell4" layout="@layout/workspace_screen"  /> 
  40.         <include android:id="@+id/cell5" layout="@layout/workspace_screen"  /> 
  41.     </com.android.launcher2.Workspace> 
  42.     <include layout="@layout/hotseat" 
  43.         android:id="@+id/hotseat" 
  44.         android:layout_width="match_parent" 
  45.         android:layout_height="@dimen/button_bar_height_plus_padding" 
  46.         android:layout_gravity="bottom"  /> 
  47.     <include 
  48.         android:id="@+id/qsb_bar" 
  49.         layout="@layout/qsb_bar"  /> 
  50.     <include layout="@layout/apps_customize_pane" 
  51.         android:id="@+id/apps_customize_pane" 
  52.         android:layout_width="match_parent" 
  53.         android:layout_height="match_parent" 
  54.         android:visibility="invisible"  /> 
  55.     <include layout="@layout/workspace_cling" 
  56.         android:id="@+id/workspace_cling" 
  57.         android:layout_width="match_parent" 
  58.         android:layout_height="match_parent" 
  59.         android:visibility="gone"  /> 
  60.     <include layout="@layout/folder_cling" 
  61.         android:id="@+id/folder_cling" 
  62.         android:layout_width="match_parent" 
  63.         android:layout_height="match_parent" 
  64.         android:visibility="gone"  /> 
  65. </com.android.launcher2.DragLayer> 

Launcher整個布局的根是DragLayer,DragLayer繼承了FrameLayout,是以DragLayer本身可以看作是一個FrameLayout。下面是 dock_divider,它通過include關鍵字包含了另外一個布局檔案workspace_divider.xml ,而這個workspace_divider.xml包含了一ImageView,其實dock_divider就是dock區域上面的那條直線。

再下面是paged_view_indicator,同樣它包含了scroll_indicator.xml,其中包含了一個ImageView,顯示的是一個.9的png檔案。實際上就是當Launcher滾動翻頁的時候,那個淡藍色的頁面訓示條。

然後桌面的核心容器WorkSpace,如下圖所示,當然你看到的隻是Workspace的一部分,其實是一個workspace_screen,通過 Launcher.xml可以看到,整個workspace由5個workspace_screen組成,每個workspace_screen其實就是對應桌面一頁。而每個workspace_screen包含了一個CellLayout,這是一個自定義控件,繼承自ViewGroup,是以它算是一個用來布局的控件,在這裡主要用來承載我們每頁的桌面圖示、widget和檔案夾。

Android 4.0 Launcher源碼分析系列(一)

點選檢視大圖

通過檢視如下的布局結構(由于圖太大隻截取了一部分)可以看到,Workspace包含了序号從0到4的5個CellLayout。

Android 4.0 Launcher源碼分析系列(一)

接下來是一個Hotseat,其實就是這塊dock區域了。如圖所示:

Android 4.0 Launcher源碼分析系列(一)

點選檢視大圖

從如下的布局圖我們可以看到,這個Hotseat其實還是包含了一個CellLayout,用來承載4個圖示和中間啟動所有程式的按鈕。

Android 4.0 Launcher源碼分析系列(一)

再下來就是那個qsb_bar,就是螢幕最頂端的Google搜尋框。這個搜尋框是獨立于圖示界面的,是以當我們對桌面進行翻頁的時候,這個搜尋框會巍然不動滴固定在最頂端,如下所示:

Android 4.0 Launcher源碼分析系列(一)

緊接着是3個初始化時被隐藏的界面。

apps_customize_pane,點選dock中顯示所有應用程式的按鈕後才會從隐藏狀态轉換為顯示狀态,如下圖所示,顯示了所有應用程式和所有插件的界面。

Android 4.0 Launcher源碼分析系列(一)

點選檢視大圖

通過檢視apps_customize_pane.xml ,我們可以看到apps_customize_pane主要由兩部分組成:tabs_container 和tabcontent。tabs部分,用來讓我們選擇是添加應用程式還是widget,如下圖所示:

Android 4.0 Launcher源碼分析系列(一)

點選檢視大圖

tabcontent,選擇了相應的tab之後,下面的部分就會相應的顯示應用程式或是widget了,如下圖所示:

Android 4.0 Launcher源碼分析系列(一)

點選檢視大圖

workspace_cling  和 folder_cling 是剛刷完機後,進入桌面時,顯示的使用向導界面,介紹怎麼使用workspace和folder,跳過以後就再也不會出現了,這裡就不截圖了。