当Activity的高度不够滑动的时候,ImageView会盖掉ScrollView的OnTouchListener监听。
这个时候需要设置Activity的
@Override
public boolean dispatchTouchEvent(MotionEvent ev){
super.dispatchTouchEvent(ev);
return productG...
分类:
其他好文 时间:
2014-08-01 10:52:01
阅读次数:
266
NGUI,目前Unity3D Assert Store中最火的2D图形界面工具。本文假设读者有Unity3D使用经验。有基本了解。NGUI3.6.01.新建Pannel(Scroll View),确保Clliping为soft Clip2.Add Component增加Scroll View3.在S...
分类:
其他好文 时间:
2014-07-30 20:17:54
阅读次数:
234
最近项目用到了scrollview内部嵌套ListView或Gridview,本来这样做不太好,但是接口不提供网页资源,只有自己一个一个View的拼凑了,苦逼的程序猿,大家都懂的,
但是写好后发现一个问题,每次进入这个页面后,scrollview不是显示在顶部,而是底部或者中间,令老夫和很难惆怅啊,经过千百度玩谷歌,终于试出了一个方法,可以解决这个问题,但是也不是完美解决,偶尔也会没效果的,代码...
分类:
其他好文 时间:
2014-07-30 17:27:04
阅读次数:
184
iOS开发UI篇—自定义瀑布流控件(cell的循环利用)一、简单说明 当滚动的时候,向数据源要cell。 当UIScrollView滚动的时候会调用layoutSubviews在tableView中也是一样的,因此,可以用这个方法来监听scrollView的滚动,可以在在这个地方向数据源索要对应.....
分类:
移动开发 时间:
2014-07-30 11:59:43
阅读次数:
405
转帖请注明本文出自xiaanming的博客(http://blog.csdn.net/xiaanming/article/details/17761431),请尊重他人的辛勤劳动成果,谢谢!我之前写了一篇关于美团网,大众点评的购买框效果的文章Android对ScrollView滚动监听,实现美团、大...
分类:
移动开发 时间:
2014-07-29 20:55:32
阅读次数:
468
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 7_scrollView大图展示
//
// Created by beyond on 14-7-24.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import...
分类:
移动开发 时间:
2014-07-26 02:49:16
阅读次数:
217
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 8_scrollVIew分页浏览
//
// Created by beyond on 14-7-25.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#...
分类:
移动开发 时间:
2014-07-26 02:17:06
阅读次数:
206
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 8_scrollVIew分页浏览
//
// Created by beyond on 14-7-25.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
...
分类:
移动开发 时间:
2014-07-26 02:11:03
阅读次数:
173
http://iosdevelopertips.com/user-interface/creating-circular-and-infinite-uiscrollviews.htmlhttps://github.com/darcyliu/SampleCode/tree/master/StreetS...
分类:
移动开发 时间:
2014-07-25 19:13:51
阅读次数:
252
Android开源项目第一篇——个性化控件(View)篇包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar、TextView、ScrollView、TimeView、TipView、FlipView、C...
分类:
移动开发 时间:
2014-07-22 22:53:13
阅读次数:
455