android 基础
yyc_dong
这个作者很懒,什么都没留下…
展开
-
android坐标
说来说去都不如 画图示意 简单易懂啊!!!真是的! 来吧~~先上张图~~! (一)首先明确一下 android 中的坐标系统 : 屏幕的左上角是坐标系统原点(0,0) 原点向右延伸是X轴正方向,原点向下延伸是Y轴正方向 (二)关于Scroll: 屏幕显示的内容很多时,会有超出一屏的情况,于是就产生了Scroll的概念。转载 2015-09-14 09:41:28 · 330 阅读 · 0 评论 -
Android中Invalidate和postInvalidate和requestLayout的区别
requestLayout:当view确定自身已经不再适合现有的区域时,该view本身调用这个方法要求parent view重新调用他的onMeasure onLayout来对重新设置自己位置。特别的当view的layoutparameter发生改变,并且它的值还没能应用到view上,这时候适合调用这个方法。 invalidate:View本身调用迫使view重画。是在UI线程自身使用。原创 2015-10-23 15:42:00 · 413 阅读 · 0 评论 -
EventBus使用详解(二)——EventBus使用进阶
一、概述 前一篇给大家装简单演示了EventBus的onEventMainThread()函数的接收,其实EventBus还有另外有个不同的函数,他们分别是: 1、onEvent 2、onEventMainThread 3、onEventBackgroundThread 4、onEventAsync 这四种订阅函数都是使用onEvent开头的,它们的功能稍有不同,在介绍转载 2015-10-26 17:01:46 · 402 阅读 · 0 评论 -
EventBus使用详解(一)——初步使用EventBus
一、概述 EventBus是一款针对Android优化的发布/订阅事件总线。主要功能是替代Intent,Handler,BroadCast在Fragment,Activity,Service,线程之间传递消息.优点是开销小,代码更优雅。以及将发送者和接收者解耦。 1、下载EventBus的类库 源码:https://github.com/greenrobot/EventBus 2、转载 2015-10-26 16:58:40 · 274 阅读 · 0 评论 -
view变化监听器ViewTreeObserver介绍
A view tree observer is used to register listeners that canbe notified of global changes in the view tree. Such global eventsinclude, but are not limited to, layout of the whole tree,beginning of the转载 2015-10-16 09:46:41 · 343 阅读 · 0 评论