读书笔记
tiutiu2011
这个作者很懒,什么都没留下…
展开
-
Android应用程序的消息处理机制
读书笔记——《Android系统源代码情景分析》第13章Android应用程序的消息处理机制原创 2015-10-24 09:13:35 · 408 阅读 · 0 评论 -
二分搜索
#include /*V0版本是原生的二分搜索*/int binarySearch_V0(int sortedArray[], int size, int value){ int first = 0; int last = size - 1; int mid; //循环不变式是:right && sortedArray[first] < value && value < sorted原创 2015-10-15 13:10:08 · 321 阅读 · 0 评论 -
Binder进程间通信系统
读书笔记——《Android系统源代码情景分析》第5章 Binder进程间通信系统原创 2015-10-10 21:03:39 · 464 阅读 · 0 评论 -
代码调优
读书笔记——《编程珠玑》第9章 代码调优原创 2015-10-12 17:15:40 · 321 阅读 · 0 评论 -
Android应用程序线程的消息循环模型
读书笔记——《Android系统源代码情景分析》第15章Android应用程序线程的消息循环模型原创 2015-10-24 13:51:18 · 878 阅读 · 0 评论 -
Binder进程间通信机制的Client进程和Server进程的通信过程
读书笔记——Binder进程间通信机制的Client进程和Server进程的一次进程间通信过程原创 2015-10-30 14:02:22 · 986 阅读 · 0 评论 -
Activity组件启动过程
Android系统的Activity组件负责管理Android应用程序的用户界面。 运行在不同进程中的Activity组件通过Binder进程间通信机制来协作完成任务。 从应用程序的角度出发,Activity组件可以分为根Activity和子Activity。根Activity以快捷图标的形式显示在应用程序启动器中,它的启动过程就代表一个Android应用程序的启动原创 2015-10-24 14:17:25 · 463 阅读 · 0 评论 -
Building Your First App
This works fine for the button, but not as well for the text field, because the user might type something longer. It would be nice to fill the unused screen width with the text field. You can do this原创 2015-12-06 15:30:17 · 436 阅读 · 0 评论