上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 43 下一页
摘要: 小总结: http://www.jianshu.com/p/89f19d67b348 https://github.com/stormzhang/android-interview-questions-cn#android-%E6%A0%B8%E5%BF%83 看到如此多的MVP+Dagger2+R 阅读全文
posted @ 2017-07-17 17:02 qlky 阅读(162) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/1a9f571ad7c0 阅读全文
posted @ 2017-07-17 16:31 qlky 阅读(139) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/lishuhuakai/article/details/11928055 阅读全文
posted @ 2017-05-22 17:05 qlky 阅读(213) 评论(0) 推荐(0) 编辑
摘要: #include #include #include void thread(void) { printf("This is a pthread.\n"); sleep(10); } int main(void) { pthread_t id[100]; int i,ret; for(i=0;i<100;i++){ ret=pthread_create(&id[i],NULL,(void ... 阅读全文
posted @ 2017-05-22 16:53 qlky 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include <sys/types.h>#include <unistd.h>#include <stdio.h>#include <stdlib.h>main(){pid_t pid; pid = fork();if(pid < 0)printf("error occurred!\n");el 阅读全文
posted @ 2017-05-22 14:11 qlky 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/qlky/p/5683163.html http://www.jianshu.com/p/94e0f9ab3f1d 因为之前已经有一篇Context的文章,这里回顾一下,并讲一些关于application的内容 阅读全文
posted @ 2017-04-22 23:29 qlky 阅读(130) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/6037f6fda285 zygote是什么?有什么作用? zygote意为“受精卵“。 在Android系统里面,zygote是一个进程的名字。Android是基于Linux System的,当你的手机开机的时候,Linux的内核加载完成之后就会启 阅读全文
posted @ 2017-04-20 23:40 qlky 阅读(768) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/2a9fcf3c11e4 http://www.jianshu.com/p/5f6d79323923 activity启动模式: http://www.jianshu.com/p/2a9fcf3c11e4 activity启动流程: http://w 阅读全文
posted @ 2017-04-19 23:14 qlky 阅读(160) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/lmj623565791/article/details/47017485 一.概述 我们可以在客户端发送一个Message给服务端,在服务端的handler中会接收到客户端的消息,然后进行对应的处理,处理完成后,再将结果等数据封装成Message,发送给客 阅读全文
posted @ 2017-04-18 23:00 qlky 阅读(3359) 评论(0) 推荐(1) 编辑
摘要: http://blog.csdn.net/lmj623565791/article/details/38461079 如果知道AIDL和binder的原理,可以简单写一个不依赖AIDL的跨进程通信 不知道的话可以看这里:http://www.cnblogs.com/qlky/p/6720405.ht 阅读全文
posted @ 2017-04-17 23:55 qlky 阅读(408) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 43 下一页