16年工作日志

0331:

1.Random 随机数

2.DreamService 互动屏保 http://www.cnblogs.com/rustfisher/p/5232471.html

3.http://blog.csdn.net/andylao62/article/details/44060245

4.Android 服务类Service 的详细学习:http://blog.csdn.net/vipzjyno1/article/details/26004831

5.android之ContentResolver与ContentProvider http://www.cnblogs.com/hnrainll/archive/2012/03/29/2424134.html

6.Andorid编程心得-利用代码解决Android WIFI休眠后连接断开的问题 http://blog.csdn.net/yangqicong11/article/details/8854272

7.procstats http://demo.netfoucs.com/a396901990/article/details/38390135

8.WallpaperService http://blog.csdn.net/heng615975867/article/details/15335143

9.Secrets of Android.mk文档翻译:http://blog.csdn.net/wonengxing/article/details/50160447

10.IWindowManager 

11.SearchManager

12.GlowPadView

13. ComponentName component = intent.getComponent();

直接Intent:指定了component属性的Intent(调用setComponent(ComponentName)或者setClass(Context, Class)来指定)。通过指定具体的组件类,通知应用启动对应的组件。

间接Intent:没有指定component属性的Intent。这些Intent需要包含足够的信息,这样系统才能根据这些信息,再在所有的可用组件中,确定满足此Intent的组件。

对于直接Intent,Android不需要去做解析,因为目标组件已经很明确,Android需要解析的是那些间接Intent,通过解析,将 Intent映射给可以处理此Intent的Activity、IntentReceiver或Service。

Intent解析机制主要是通过查找已注册在AndroidManifest.xml中的所有IntentFilter及其中定义的Intent,最终找到匹配的Intent。在这个解析过程中,Android是通过Intent的action、type、category这三个属性来进行判断的,

判断方法如下:

如果Intent指明定了action,则目标组件的IntentFilter的action列表中就必须包含有这个action,否则不能匹配;

如果Intent没有提供type,系统将从data中得到数据类型。

和action一样,目标组件的数据类型列表中必须包含Intent的数据类型,否则不能匹配。

如果Intent中的数据不是content: 类型的URI,而且Intent也没有明确指定它的type,将根据Intent中数据的scheme (比如 http: 或者mailto: ) 进行匹配。同上,Intent 的scheme必须出现在目标组件的scheme列表中。

如果Intent指定了一个或多个category,这些类别必须全部出现在组建的类别列表中。比如Intent中包含了两个类别:LAUNCHER_CATEGORY 和 ALTERNATIVE_CATEGORY,解析得到的目标组件必须至少包含这两个类别。


0401:

1.局部更新: 

http://my.oschina.net/liucundong/blog/160436

有两种方法,

一种是动态加载,将需要的资源作为jar进行加载,不需要重新下载apk。

二种是增量下载,下载apk的时候只下载变动的部分,未变动的部分从老的apk中获取,这样也能节省流量。

http://www.xuanyusong.com/archives/1933/


2.ActivityOptions:

3.GlowPadView http://blog.csdn.net/vrix/article/details/39156521

4.IWindowManager http://blog.csdn.net/xudongdong99/article/details/8857173


0406:

1.android/os/RecoverySystem  http://my.oschina.net/u/572562/blog/63834

2.百度搜索 user library  http://blog.csdn.net/longyulu/article/details/8984525

  system library   


你可能感兴趣的:(工作日志)