码迷,mamicode.com
首页 > 移动开发 > 详细

Android控件分析-ScrollView

时间:2015-02-14 12:25:33      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

 

首先设置

setOverScrollMode(OVER_SCROLL_NEVER); // );//去掉ScrollView 滑动到底部或顶部 继续滑动时会出现渐变的蓝色颜色快

 

init(... ...

        if (null != attrs) {
            TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.PullScrollView);
            if (ta != null) {
                mHeaderHeight = (int) ta.getDimension(R.styleable.PullScrollView_headerHeight, -1); // 头高度.
                mHeaderVisibleHeight = (int) ta.getDimension(R.styleable
                        .PullScrollView_headerVisibleHeight, -1); //
                ta.recycle(); //
            }
        }

ff

Android控件分析-ScrollView

标签:

原文地址:http://my.oschina.net/hailongqiu/blog/378592

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!