怕以后找不到,转载过来,原博为:http://blog.csdn.net/stevenhu_223/article/details/10051279
====================================================================================================================================
在上一篇文章《Launcher源码浅析-----Launcher布局》中,对Launcher的总布局文件Launcher.xml进行了分析。在分析Launcher布局文件代码过程中,会看到一些以launcher:开头而不是以android:开头的布局属性的定义。如launcher.xml文件中id为workspace的视图布局,如下代码:
- <com.android.launcher2.DragLayer
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
-
- android:id="@+id/drag_layer"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- ...
-
- <com.android.launcher2.Workspace
- android:id="@+id/workspace"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingTop="@dimen/qsb_bar_height_inset"
- android:paddingBottom="@dimen/button_bar_height"
- launcher:defaultScreen="2"
- launcher:cellCountX="4"
- launcher:cellCountY="4"
- launcher:pageSpacing="@dimen/workspace_page_spacing"
- launcher:scrollIndicatorPaddingLeft="@dimen/workspace_divider_padding_left"
- launcher:scrollIndicatorPaddingRight="@dimen/workspace_divider_padding_right">
-
-
- <include android:id="@+id/cell1" layout="@layout/workspace_screen" />
- <include android:id="@+id/cell2" layout="@layout/workspace_screen" />
- <include android:id="@+id/cell3" layout="@layout/workspace_screen" />
- <include android:id="@+id/cell4" layout="@layout/workspace_screen" />
- <include android:id="@+id/cell5" layout="@layout/workspace_screen" />
- </com.android.launcher2.Workspace>
- ...
- </com.android.launcher2.DragLayer>
从上面的代码中,可以知道,布局属性defaultScreen、cellCountX、cellCountY、pageSpacing、scrollIndicatorPaddingLeft、scrollIndicatorPaddingRight都是以launcher:开头的,而不是android:开头(android:开头是android系统中固有的布局属性)。android和launcher分别是属性的命名空间,在xml文件的根元素中定义,如:xmlns:android="http://schemas.android.com/apk/res/android"和xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"。其中"http://schemas.android.com/apk/res/是固定的,后面的android和com.android.launcher的分别为对应的包名。com.android.launcher就是Launcher的包名。
也就是说,以launcher:开头的是Launcher系统应用中自己声明和定义的属性,那么这些属性是如何声明、定义以及在代码中利用的呢?接下来还是以id为workspace的视图布局为例进行说明。
--> id为workspace的视图布局对应的是自定义视图类Workspace,Workspace类的代码如下:
- public class Workspace extends SmoothPagedView
- implements DropTarget, DragSource, DragScroller, View.OnTouchListener,
- DragController.DragListener {
- ...
- private int mDefaultPage;
-
- private static final int DEFAULT_CELL_COUNT_X = 4;
- private static final int DEFAULT_CELL_COUNT_Y = 4;
- ...
- public Workspace(Context context, AttributeSet attrs, int defStyle) {
- super(context, attrs, defStyle);
- ...
- int cellCountX = DEFAULT_CELL_COUNT_X;
- int cellCountY = DEFAULT_CELL_COUNT_Y;
-
- TypedArray a = context.obtainStyledAttributes(attrs,
- R.styleable.Workspace, defStyle, 0);
- ...
- cellCountX = a.getInt(R.styleable.Workspace_cellCountX, cellCountX);
- cellCountY = a.getInt(R.styleable.Workspace_cellCountY, cellCountY);
- mDefaultPage = a.getInt(R.styleable.Workspace_defaultScreen, 1);
- a.recycle();
- ...
- }
- ...
- }
Workspace的构造函数中,可以知道,TypedArray对象a是通过调用Workspace构造函数第一个参数context的obtainStyledAttributes方法创建的,obtainStyledAttributes方法的第一个参数是Workspace构造函数的第二个参数attrs(AttributeSet)对象。重点是obtainStyledAttributes的第二个参数R.styleable.Workspace,R.styleable.Workspace对应的是一个int[]数组(资源id数组)。而这种以R.styleable.xxx一般是在attrs.xml文件中声明的。
-->为此,跟踪到Launcher中的attrs.xml文件(该文件所在路径为packages/apps/Launcher2/res/values/attrs.xml),该文件中有如下代码:
- <resources>
- ...
- <declare-styleable name="Workspace">
-
- <attr name="defaultScreen" format="integer" />
-
- <attr name="cellCountX" format="integer" />
-
- <attr name="cellCountY" format="integer" />
- </declare-styleable>
- ...
- </resources>
从attrs.xml代码中,可以知道,name="Workspace"的declare-styleable元素数组下分别有子元素defaultScreen、cellCountX、cellCountY,它们均为Launcher中自定义的布局属性名称,attrs.xml文件中的代码就是对Launcher自定义布局属性的声明,format=“xxx”即为布局属性的数据类型,这里的defaultScreen、cellCountX、cellCountY等自定义属性均为integer类型。
-->回到上文提到的Workspace的构造函数中的代码:
- TypedArray a = context.obtainStyledAttributes(attrs,
- R.styleable.Workspace, defStyle, 0);
所以,obtainStyledAttributes方法的第二个参数R.styleable.Workspace对应的是attrs.xml文件中声明的属性资源数组<declare-styleable name="Workspace">;
-->通过R.styleable.Workspace创建TypedArray对象a后,就可以调用a的getxxx函数取得在属性资源数组Workspace中声明的各个布局属性的值了,如下:
- cellCountX = a.getInt(R.styleable.Workspace_cellCountX, cellCountX);
- cellCountY = a.getInt(R.styleable.Workspace_cellCountY, cellCountY);
- mDefaultPage = a.getInt(R.styleable.Workspace_defaultScreen, 1);
R.styleable.Workspace_cellCountX表示Workspace资源数组中声明的cellCountX布局属性,只要为Workspace中的声明的布局属性,均用Workspace+下划线+布局属性表示。
a.getInt(R.styleable.Workspace_cellCountX, cellCountX)方法首先会获取布局属性cellCountX定义的值,若该属性的值没有定义,则取第二个参数cellCountX的值作为默认值;在Workspace的构造函数中,cellCountX被赋值为DEFAULT_CELL_COUNT_X,而DEFAULT_CELL_COUNT_X被初始化为4(即workspace的X轴方向上可放置4个快捷图标)。
-->布局属性的值一般都是在布局文件中定义的,如Workspace的构造函数中加载的布局属性defaultScreen、cellCountX、cellCountY的值,在id为workspace的布局代码中定义如下:
- <com.android.launcher2.Workspace
- ...
- launcher:defaultScreen="2"
- launcher:cellCountX="4"
- launcher:cellCountY="4"
- ...
- </com.android.launcher2.Workspace>
有一个问题值得注意:在Workspace的构造函数中加载了defaultScreen、cellCountX、cellCountY自定义属性。但是,id为workspace的视图布局代码中还有pageSpacing、scrollIndicatorPaddingLeft、scrollIndicatorPadding等自定义的布局属性,这些属性并没有在Workspace的构造函数中加载,而是通过PagedView的构造函数来加载;Workspace继承自SmoothPagedView,SmoothPagedView继承自PagedView。也就是说,PagedView为Workspace的父类。所以pageSpacing、scrollIndicatorPaddingLeft、scrollIndicatorPadding这些父类中加载的属性作为Workspace的属性也是理所当然的了。
-->PagedView的构造函数代码如下:
-
- public abstract class PagedView extends ViewGroup {
- ...
- public PagedView(Context context, AttributeSet attrs, int defStyle) {
- ...
- TypedArray a = context.obtainStyledAttributes(attrs,
- R.styleable.PagedView, defStyle, 0);
- mPageSpacing = a.getDimensionPixelSize(R.styleable.PagedView_pageSpacing, 0);
- mPageLayoutPaddingTop = a.getDimensionPixelSize(
- R.styleable.PagedView_pageLayoutPaddingTop, 0);
- mPageLayoutPaddingBottom = a.getDimensionPixelSize(
- R.styleable.PagedView_pageLayoutPaddingBottom, 0);
- mPageLayoutPaddingLeft = a.getDimensionPixelSize(
- R.styleable.PagedView_pageLayoutPaddingLeft, 0);
- mPageLayoutPaddingRight = a.getDimensionPixelSize(
- R.styleable.PagedView_pageLayoutPaddingRight, 0);
- mPageLayoutWidthGap = a.getDimensionPixelSize(
- R.styleable.PagedView_pageLayoutWidthGap, 0);
- mPageLayoutHeightGap = a.getDimensionPixelSize(
- R.styleable.PagedView_pageLayoutHeightGap, 0);
- mScrollIndicatorPaddingLeft =
- a.getDimensionPixelSize(R.styleable.PagedView_scrollIndicatorPaddingLeft, 0);
- mScrollIndicatorPaddingRight =
- a.getDimensionPixelSize(R.styleable.PagedView_scrollIndicatorPaddingRight, 0);
- a.recycle();
- ...
- }
- ...
- }
-->同样地,我们到attrs.xml文件代码中找到R.styleable.PagedView对应的资源数组声明如下:
- <resources>
- ...
- <!-- PagedView specific attributes. These attributes are used to customize
- a PagedView view in XML files. -->
- <declare-styleable name="PagedView">
-
- <attr name="cellCountX" />
-
- <attr name="cellCountY" />
-
- <attr name="pageLayoutWidthGap" format="dimension" />
- <attr name="pageLayoutHeightGap" format="dimension" />
-
- <attr name="pageLayoutPaddingTop" format="dimension" />
- <attr name="pageLayoutPaddingBottom" format="dimension" />
- <attr name="pageLayoutPaddingLeft" format="dimension" />
- <attr name="pageLayoutPaddingRight" format="dimension" />
-
- <attr name="pageSpacing" format="dimension" />
-
- <attr name="scrollIndicatorPaddingLeft" format="dimension" />
- <attr name="scrollIndicatorPaddingRight" format="dimension" />
- </declare-styleable>
- ...
- </resources>
format="dimension"表示属性的值是在dimens.xml定义;所以,workspace布局文件中的其他自定义属性pageSpacing、scrollIndicatorPaddingLeft、scrollIndicatorPadding是这样通过attrs.xml文件声明和PagedView的构造函数加载出来的。
至于其他的Launcher自定义的布局属性,同样的也是通过在attrs.xml文件声明、布局文件中定义、自定义视图类的构造函数中加载这几个流程。