Android 4.0 Launcher源码分析系列(二)

原文:http://mobile.51cto.com/hot-314700.htm

上一节我们研究了Launcher的整体结构,这一节我们看看整个Laucher的入口点,同时Laucher在加载了它的布局文件Laucher.xml时都干了些什么。

我们在源代码中可以找到LauncherApplication, 它继承了Application类,当整个Launcher启动时,它就是整个程序的入口。我们先来看它们在AndroidManifest.xml中是怎么配置的。

  1. <application 
  2.     android:name="com.android.launcher2.LauncherApplication" 
  3.     android:label="@string/application_name" 
  4.     android:icon="@drawable/ic_launcher_home" 
  5.     android:hardwareAccelerated="@bool/config_hardwareAccelerated" 
  6.     android:largeHeap="@bool/config_largeHeap">     

首先通过android:name指定了整个Launcher的Application也就是入口是在 com.android.launcher2.LauncherApplication这个路径下,android:lable指定了桌面的名字是叫 Launcher,如果要改名字就改values文件夹的string.xml中的相应属性就可以了。android:icon指定了Laucher的图标,这个图标可以在应用程序管理器中看见,如下图所示,是个可爱机器人住在一个小房子里面,如果需要更改Laucher的图片,重新设置这个属性就可以了。

启动器

android:hardwareAccelerated="@bool/config_hardwareAccelerated" 指定了整个应用程序是启用硬件加速的,这样整个应用程序的运行速度会更快。

android:largeHeap="@bool/config_largeHeap" 指定了应用程序使用了大的堆内存,能在一定程度上避免,对内存out of memory错误的出现。我们可以在values文件夹的config.xml中看到对是否启用硬件加速和大内存的配置。如下所示:

  1. <bool name="config_hardwareAccelerated">true</bool> 
  2. <bool name="config_largeHeap">false</bool> 

在Application中onCreate()方法通过:sIsScreenLarge = screenSize == Configuration.SCREENLAYOUT_SIZE_LARGE || screenSize == Configuration.SCREENLAYOUT_SIZE_XLARGE; 和sScreenDensity = getResources().getDisplayMetrics().density;来判断是否是大屏幕,同时得到它的屏幕密度。同时通过mIconCache = new IconCache(this); 来设置了应用程序的图标的cache,然后申明了LauncherModel,mModel = new LauncherModel(this, mIconCache); LauncherModel主要用于加载桌面的图标、插件和文件夹,同时LaucherModel是一个广播接收器,在程序包发生改变、区域、或者配置文件发生改变时,都会发送广播给LaucherModel,LaucherModel会根据不同的广播来做相应加载操作,此部分会在后面做详细介绍。

在LauncherApplication完成初始化工作之后,我们就来到了Launcher.java的onCreate()方法,同样是启动桌面时的一系列初始化工作。

首先需要注意的是在加载launcher布局文件时的一个TraceView的调试方法,它能够对在他们之间的方法进行图形化的性能分析,并且能够具体到method 代码如下:

  1. if (PROFILE_STARTUP) {  
  2.      android.os.Debug.startMethodTracing(  
  3.              Environment.getDataDirectory() + "/data/com.android.launcher/launcher");  
  4.  }  
  5.  if (PROFILE_STARTUP) {  
  6.      android.os.Debug.stopMethodTracing();  
  7.  }  

我指定的生成性能分析的路径是:/data/data/com.android.launcher/launcher,启动launcher后我们会发现在指定的目录下生成了launcher.trace文件,如下图所示:

启动launcher后我们会发现在指定的目录下生成了launcher.trace文件

把launcher.trace文件通过DDMS pull到电脑上,在SDK的tools目录里,执行traceview工具来打开launcher.trace .如下图所示:

把launcher.trace文件通过DDMS pull到电脑上

点击查看大图

可以看到setContentView使用了448.623ms,占整个跟踪代码时间的62%,所以说在加载布局文件时,肯定经过了一系列的加载运算,我们接着分析。

当加载launcher布局文件的过程时,最为关键的时对整个workspace的加载,workspace是一个自定义组件,它的继承关系如下所示,可以看到Workspace实际上也是一个ViewGroup,可以加入其他控件。

剪切板

当ViewGroup组件进行加载的时候首先会读取本控件对应的XML文件,然后Framework层会执行它的onMeasure()方法,根据它所包含的子控件大小来计算出整个控件要在屏幕上占的大小。Workspace重写了ViewGroup的onMeasure方法(在PagedView中),在workspace中是对5个子CellLayout进行测量,的方法如下, 具体含义请看注释:

  1. @Override 
  2.     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
  3.         if (!mIsDataReady) { 
  4.             super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
  5.             return; 
  6.         } 
  7.         //得到宽度的模式(在配置文件中对应的是match_parent 或者 wrap_content)和其大小 
  8.         final int widthMode = MeasureSpec.getMode(widthMeasureSpec); 
  9.         final int widthSize = MeasureSpec.getSize(widthMeasureSpec); 
  10.         //宽度必须是match_parent,否则会抛出异常。 
  11.         if (widthMode != MeasureSpec.EXACTLY) { 
  12.             throw new IllegalStateException("Workspace can only be used in EXACTLY mode."); 
  13.         } 
  14.  
  15.         /* Allow the height to be set as WRAP_CONTENT. This allows the particular case 
  16.          * of the All apps view on XLarge displays to not take up more space then it needs. Width 
  17.          * is still not allowed to be set as WRAP_CONTENT since many parts of the code expect 
  18.          * each page to have the same width. 
  19.          */ 
  20.         //高度允许是wrap_content,因为在大屏幕的情况下,会占了多余的位置 
  21.         final int heightMode = MeasureSpec.getMode(heightMeasureSpec); 
  22.         int heightSize = MeasureSpec.getSize(heightMeasureSpec); 
  23.         int maxChildHeight = 0
  24.         //得到在竖值方向上和水平方向上的Padding  
  25.         final int verticalPadding = mPaddingTop + mPaddingBottom; 
  26.         final int horizontalPadding = mPaddingLeft + mPaddingRight; 
  27.  
  28.  
  29.         // The children are given the same width and height as the workspace 
  30.         // unless they were set to WRAP_CONTENT 
  31.         if (DEBUG) Log.d(TAG, "PagedView.onMeasure(): " + widthSize + ", " + heightSize  + " mPaddingTop="+mPaddingTop + " mPaddingBottom="+mPaddingBottom); 
  32.         final int childCount = getChildCount(); 
  33.         //对workspace的子View进行遍历,从而对它的几个子view进行测量。 
  34.         for (int i = 0; i < childCount; i++) { 
  35.             // disallowing padding in paged view (just pass 0) 
  36.             final View child = getPageAt(i); 
  37.             final LayoutParams lp = (LayoutParams) child.getLayoutParams(); 
  38.  
  39.             int childWidthMode; 
  40.             if (lp.width == LayoutParams.WRAP_CONTENT) { 
  41.                 childWidthMode = MeasureSpec.AT_MOST; 
  42.             } else { 
  43.                 childWidthMode = MeasureSpec.EXACTLY; 
  44.             } 
  45.  
  46.             int childHeightMode; 
  47.             if (lp.height == LayoutParams.WRAP_CONTENT) { 
  48.                 childHeightMode = MeasureSpec.AT_MOST; 
  49.             } else { 
  50.                 childHeightMode = MeasureSpec.EXACTLY; 
  51.             } 
  52.  
  53.             final int childWidthMeasureSpec = 
  54.                 MeasureSpec.makeMeasureSpec(widthSize - horizontalPadding, childWidthMode); 
  55.             final int childHeightMeasureSpec = 
  56.                 MeasureSpec.makeMeasureSpec(heightSize - verticalPadding, childHeightMode); 
  57.             //对子View的大小进行设置,传入width和height参数 
  58.             child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 
  59.             maxChildHeight = Math.max(maxChildHeight, child.getMeasuredHeight()); 
  60.             if (DEBUG) Log.d(TAG, "\tmeasure-child" + i + ": " + child.getMeasuredWidth() + ", " 
  61.                     + child.getMeasuredHeight()); 
  62.         } 
  63.  
  64.         if (heightMode == MeasureSpec.AT_MOST) { 
  65.             heightSize = maxChildHeight + verticalPadding; 
  66.         } 
  67.         //存储测量后的宽度和高度 
  68.         setMeasuredDimension(widthSize, heightSize); 
  69.  
  70.         // We can't call getChildOffset/getRelativeChildOffset until we set the measured dimensions. 
  71.         // We also wait until we set the measured dimensions before flushing the cache as well, to 
  72.         // ensure that the cache is filled with good values. 
  73.         invalidateCachedOffsets(); 
  74.         updateScrollingIndicatorPosition(); 
  75.  
  76.         if (childCount > 0) { 
  77.             mMaxScrollX = getChildOffset(childCount - 1) - getRelativeChildOffset(childCount - 1); 
  78.         } else { 
  79.             mMaxScrollX = 0
  80.         } 
  81.     } 

测量完毕之后就可以对子控件进行布局了,这时候Framework层会调用PagedView中重写的onLayout方法。

  1. @Override 
  2.    protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 
  3.        if (!mIsDataReady) { 
  4.            return; 
  5.        } 
  6.  
  7.        if (DEBUG) Log.d(TAG, "PagedView.onLayout()"); 
  8.        //竖值方向的Padding 
  9.        final int verticalPadding = mPaddingTop + mPaddingBottom; 
  10.        final int childCount = getChildCount(); 
  11.        int childLeft = 0
  12.        if (childCount > 0) { 
  13.            if (DEBUG) Log.d(TAG, "getRelativeChildOffset(): " + getMeasuredWidth() + ", " 
  14.                    + getChildWidth(0)); 
  15.            childLeft = getRelativeChildOffset(0); 
  16.            //偏移量为0 
  17.            if (DEBUG) Log.d(TAG, "childLeft:"+childLeft);   
  18.  
  19.            // Calculate the variable page spacing if necessary 
  20.            // 如果mPageSpacing小于0的话,就重新计算mPageSpacing,并且给它赋值。 
  21.            if (mPageSpacing < 0) { 
  22.                setPageSpacing(((right - left) - getChildAt(0).getMeasuredWidth()) / 2); 
  23.            } 
  24.        } 
  25.  
  26.        for (int i = 0; i < childCount; i++) { 
  27.            final View child = getPageAt(i); 
  28.            if (child.getVisibility() != View.GONE) { 
  29.                final int childWidth = getScaledMeasuredWidth(child); 
  30.                final int childchildHeight = child.getMeasuredHeight(); 
  31.                int childTop = mPaddingTop
  32.                if (mCenterPagesVertically) { 
  33.                    childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2; 
  34.                } 
  35.                 
  36.                if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); 
  37.                //把5个CellLayout布局到相应的位置,layout的4个参数分别是 左、上、右、下。 
  38.                child.layout(childLeft, childTop, 
  39.                        childLeft + child.getMeasuredWidth(), childTop + childHeight); 
  40.                childLeft += childWidth + mPageSpacing; 
  41.            } 
  42.        } 
  43.        //第一次布局完毕之后,就根据当前页偏移量(当前页距离Workspace最左边的距离)滚动到默认的页面去,第一次布局时 
  44.        //默认的当前页是3,则它的便宜量就是两个CellLayout的宽度。 
  45.        if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < getChildCount()) { 
  46.            setHorizontalScrollBarEnabled(false); 
  47.            int newX = getChildOffset(mCurrentPage) - getRelativeChildOffset(mCurrentPage); 
  48.            //滚动到指定的位置 
  49.            scrollTo(newX, 0); 
  50.            mScroller.setFinalX(newX); 
  51.            if (DEBUG) Log.d(TAG, "newX is "+newX); 
  52.            setHorizontalScrollBarEnabled(true); 
  53.            mFirstLayout = false
  54.        } 
  55.  
  56.        if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < getChildCount()) { 
  57.            mFirstLayout = false
  58.        } 
  59.    } 

转载于:https://www.cnblogs.com/deve/archive/2012/06/28/2568977.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/361399.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用JFace Viewer延迟获取模型元素

Eclipse JFace Viewers显示的模型元素有时需要花费大量时间来加载。 因此&#xff0c; 工作台提供了IDeferredWorkbenchAdapter类型以在后台获取此类模型元素。 不幸的是&#xff0c;似乎仅通过DeferredTreeContentManager派生的AbstractTreeViewer支持此机制。 因此&#xff…

Eclipse扩展的轻量级集成测试

最近&#xff0c;我为Eclipse扩展点评估引入了一个小助手。 辅助程序努力减少通用编程步骤的样板代码&#xff0c;同时增加开发指导和可读性。 这篇文章是希望的后续文章&#xff0c;展示了如何将实用程序与AssertJ定制断言结合使用&#xff0c;以编写针对Eclipse扩展的轻量级…

二:熟悉 TCP/IP 协议

一篇文章带你熟悉 TCP/IP 协议&#xff08;网络协议篇二&#xff09; 同样的&#xff0c;本文篇幅也比较长&#xff0c;先来一张思维导图&#xff0c;带大家过一遍。 一图看完本文 一、 计算机网络体系结构分层 计算机网络体系结构分层计算机网络体系结构分层不难看出&…

DOM操作案例之--全选与反选

全选与反选在表单类的项目中还是很常见的&#xff0c;电商项目中的购物车一定少不了这个功能。 下面我只就用一个简单的案例做个演示吧。 <div class"wrap"><table><thead><tr><th><input type"checkbox" id"j_cbA…

带有Swagger的Spring Rest API –公开文档

创建API文档后&#xff0c;将其提供给涉众非常重要。 在理想情况下&#xff0c;此发布的文档将具有足够的灵活性以解决任何最新更改&#xff0c;并且易于分发&#xff08;就成本以及完成此操作所需的时间而言&#xff09;。 为了使这成为可能&#xff0c;我们将利用我在上一篇文…

hinkphp项目部署到Linux服务器上报错“模板不存在”如何解决

检查了服务器上的文件&#xff0c;并没有缺少文件&#xff0c;再次上传文件到服务器&#xff0c;还是报错。莫名其妙&#xff0c;怀疑是代码问题。 仔细检查后&#xff0c;发现是模板的文件名问题&#xff1a; 用过TP的都知道&#xff1a;thinkphp会在$this->display()的时候…

Elements in iteration expect to have v-bind:key directives错误的解决办法

一、错误如下[eslint-plugin-vue][vue/require-v-for-key]Elements in iteration expect to have v-bind:key directives.Renders the element or template block multiple times based on the source data. 使用VS Code 出现如下问题&#xff0c;如图 二、解决 在用vscode编写…

无法使用JDK 8卸载JavaFX SceneBuilder 1.0

我最近从旧的基于Vista的笔记本电脑中删除了一些我曾经使用过的软件开发应用程序&#xff0c;工具和文件&#xff0c;因为主要使用该笔记本电脑的人们现在对软件开发不再感兴趣。 作为该工作的一部分&#xff0c;我尝试删除了几年前在该笔记本电脑上安装的JavaFX Scene Builder…

分享一个不错的表格样式

先贴个HTML生成的源码出来&#xff1a; <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns"http://www.w3.org/1999/xhtml"> <head>…

如何将SQL GROUP BY和聚合转换为Java 8

我无法抗拒。 我已经阅读了Hugo Prudente在Stack Overflow上提出的问题 。 而且我知道必须有比JDK提供的更好的方法。 问题如下&#xff1a; 我正在寻找一个lambda来优化已检索的数据。 我有一个原始的结果集&#xff0c;如果用户不更改我想要的日期&#xff0c;则使用Java的…

zabbix监控docker容器

1、环境说明 由于最近zabbix进行过一次迁移&#xff0c;所以zabbix-server系列采用docker方式安装&#xff0c;参考zabbix官网&#xff1a;https://github.com/zabbix/zabbix-docker。为适应本地环境和需求&#xff0c;docker-compose.yml文件有改动&#xff0c;具体内容如下&a…

Hibernate应用程序级可重复读取

介绍 在我以前的文章中&#xff0c;我描述了应用程序级事务如何为长时间的对话提供合适的并发控制机制。 所有实体都在Hibernate会话的上下文中加载&#xff0c;充当事务后写式缓存 。 Hibernate持久性上下文可以包含给定实体的一个引用和一个引用。 一级缓存可确保会话级可重…

canvas动画简单操作

canvas动画 小球滚动效果 关键api&#xff1a; window.requestAnimationFrame(draw) 会递归调用draw函数&#xff0c;替代setIntervalvar x 20; var speed 4; //电脑的帧率是1秒钟60Hz&#xff0c; 就相当于一秒钟可以播放60张图片&#xff0c;就相当于播放一张图片使用16.…

使用PrimeFaces开发数据导出实用程序

我的日常工作涉及大量使用数据。 我们使用关系数据库来存储所有内容&#xff0c;因为我们依赖于企业级的数据管理。 有时&#xff0c;具有将数据提取为简单格式&#xff08;例如电子表格&#xff09;的功能很有用&#xff0c;以便我们可以按需进行操作。 这篇文章概述了我使用P…

Tomcat到Wildfly:配置数据库连接

此摘录摘自《 从Tomcat到WildFly 》一书&#xff0c;您将在其中学习如何将现有的Tomcat体系结构移植到WildFly&#xff0c;包括服务器配置和在其顶部运行的应用程序。 WildFly是完全兼容的Java Enterprise Edition 7容器&#xff0c;与Tomcat相比&#xff0c;它具有更多的可用…

在jOOQ之上构建的RESTful JDBC HTTP服务器

jOOQ生态系统和社区正在持续增长。 我们个人总是很高兴看到基于jOOQ构建的其他开源项目。 今天&#xff0c;我们非常高兴为您介绍BjrnHarrtell结合REST和RDBMS的一种非常有趣的方法。 BjrnHarrtell从小就是瑞典的程序员。 他通常在Sweco Position AB上忙于编写GIS系统和集成&a…

node.js 搭建http调取 mysql数据库中的值

首先&#xff0c;我们先在数据库中创建两个表t_news,t_news_type;插入数据&#xff1a; 然后我们再写代码&#xff1a; //加载模块express var express require("express"); var fs require("fs"); //加载路径 var url require("url"); //加…

NHibernate.3.0.Cookbook第三章第9节的翻译

Using stateless sessions 使用无状态会话 当进行大量数据处理的时候,可能会放弃使用一些高级特性,而使用更接近底层的API来提高性能.在NHibernate中,这种高性能的底层API就是无状态的会话.本节介绍如何使用无状态会话来更新movie对象的价格. 准备 使用第一章的Eg.Core和第二章…

致电以验证您的JavaFX UI的响应能力

最近&#xff0c;Jim Weaver在他的Surface Pro上为演示安装了我的小图片索引应用“ picmodo”&#xff0c;并且GUI变成了垃圾。 显然&#xff0c;Windows Tablet上JavaFX的基本字体大小很高&#xff1a; 我认为&#xff0c;即使调整大小行为和预期一样工作&#xff0c;UI也绝…

vuex 管理vue-router的传值

假设有这样的一种情况&#xff0c;在两个组件中。一个组件【A】主要是比如说放表格数据&#xff0c;而另外一个组件【B】是专门用来向组件A的表格添加数据的表单。这个时候就是两个兄弟组件之间传递数据了。首先想到的是使用兄弟组件传递数据的方法&#xff1a; 新建一个中间件…