前阵子要的工作是给桌面(Launcher启动器,其实也是一个activity)添加一个触摸特效(一个View),而这个特效是每次触碰都会有,不管你在桌面上做什么操作都会显示特效!之前一直摸索着不知道如何入手,后来慢慢的实验之后才知道有个android触碰消息传递机制。自己摸索的确很慢,要是早点知道这个机制那将会事半功倍。
用户的每次触碰(onClick,onLongClick,onScroll,...
分类:
移动开发 时间:
2014-07-29 22:01:52
阅读次数:
387
#div1{
width:100px;
height:150px;
background:red;
position:absolute;
right:0;
bottom:0;
}
window.onscroll=function (){
var oDiv=document.getElementById('div1');
var s...
分类:
Web程序 时间:
2014-07-23 13:33:26
阅读次数:
216
#div1{
width:100px;
height:150px;
background:red;
position:absolute;
right:0;
bottom:0;
}
window.onscroll=function (){
var oDiv=document.getElementById('div1');
var s...
分类:
Web程序 时间:
2014-07-23 13:33:17
阅读次数:
286
页面初始化时,所有商品全是默认图片当屏幕向下滚动,超过下边框的所有图片都显示//图片懒加载(各分类:商品列表页)var waterfull = { init: function(col) { window.onscroll=this.throttle(this.isScroll...
分类:
其他好文 时间:
2014-06-18 13:22:53
阅读次数:
240
http://www.ablanxue.com/prone_2866_1.htmlwindow.parent.onscroll
= window.parent.onresize = window.onload =function () { var oFix_box = doc...
分类:
Web程序 时间:
2014-05-20 07:52:20
阅读次数:
448
我们做Listview的分批加载时,需要为Listview调用setOnScrollListener(具体代码可见我上一篇博客)
可是,我们会发现,当运行程序时,listview明明没有滚动,那为什么系统会调用onScroll方法呢?
我们先看setOnScrollListener源码:
public void setOnScrollListener(OnScrollListener...
分类:
移动开发 时间:
2014-05-11 22:32:56
阅读次数:
357