
scrollview
沐怡旸--指针诗笺
路漫漫其修远兮,吾将上下而求索
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
判断scrollview中某子控件是否可见
Android: how to check if a View inside of ScrollView is visible?Solutions:Rect scrollBounds = new Rect(); scrollView.getHitRect(scrollBounds); if (childView.getLocalVisibleRect(scrollBounds)) { //子原创 2015-04-26 13:34:57 · 11130 阅读 · 2 评论 -
Scrollview嵌套listviwe简单解决方案
原文链接The shortest & easiest solution for the ListView inside a ScrollView problem.You do not have to do anything special in layout.xml file nor handle anything on the parent ScrollView. You only have to原创 2015-05-27 11:29:39 · 1067 阅读 · 0 评论