Android 综合
文章平均质量分 95
与Android相关的技术点!
西二旗王员外
我的个人笔记,如果有幸对您有帮助,欢迎点赞…………
展开
-
Android之MessageQueue源码分析(第二篇:插入Message)
Message对象将在此方法中被MessageQueue对象管理上0、两个参数,接受一个Message对象,一个发送时间when boolean enqueueMessage(Message msg, long when) { if (msg.target == null) { throw new IllegalArgumentEx...原创 2020-04-05 18:31:23 · 394 阅读 · 0 评论 -
Android Activity生命周期方法回调总结
1、必须要再上一次官方的这个生命周期图,我太他妈的喜欢了场景集:单个Activity的场景场景1:单纯的打开一个ActivityonCreate() -> onStart() -> onResume()场景2: 单纯的关闭一个ActivityonPause()->onStop()->onDestroy()场景3:单纯的对已经打开的Activity,原创 2016-08-26 15:32:52 · 2205 阅读 · 2 评论 -
Android之官方MVP例子分析(第一篇tasks包)
官方大牛写的关于MVP的例子,应用名称叫做todoapp(大牛不喜欢驼峰0、作者是大牛,包名是按照页面名字(比如添加任务页)去命名的(没有用那种按照组件去分package),厉害,谁让我比较烂,所以大家都很牛,这也是大型App常见的命名方式1、先看下最外层的两个interfacepublic interface BasePresenter { void st...原创 2019-08-22 00:12:59 · 532 阅读 · 1 评论 -
Android之官方MVP例子分析(第二篇addedittask包)
0、addedittask包,是新增/编辑页面1、首先是interface的介绍,噢耶/** * This specifies the contract between the view and the presenter. * 指定一个contract,里面有View接口、presenter接口 */public interface AddEditTaskContra...原创 2019-08-22 00:22:33 · 314 阅读 · 0 评论 -
Android之官方MVP例子分析(第三篇statistics包)
0、第三篇就分析一下statistics包吧,这也是一个页面,让我们看看大牛怎么用MVP写一个页面的1、老规矩,先看interface/** * This specifies the contract between the view and the presenter. * 在View和presenter之间指定一个contract用来,哈哈,管理他们呗 */publ...原创 2019-08-22 00:27:00 · 498 阅读 · 0 评论 -
Android之官方MVP例子分析(第四篇taskdetail包)
0、嘿嘿,这篇该详情页包了1、先看大牛的interface,看下这个页面有哪些页面逻辑,根据业务逻辑,View又是需要如何跟着变化/** * This specifies the contract between the view and the presenter. * 在View和presenter之间指定的连接器contract接口,把View和presenter放在...原创 2019-08-22 00:35:58 · 963 阅读 · 0 评论