自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (4)
  • 收藏
  • 关注

空空如也

任意方向滑动的scrollview 解决快速滑动内容消失的bug

解决:http://download.csdn.net/download/cboy017/4901452 资源中控件的bug 快速滑动内容消失的问题。 修改点: // 开启动画移动 public void animation() { // 开启移动动画 TranslateAnimation ta = new TranslateAnimation(0, -inner.getLeft(), 0, -inner.getTop()); ta.setDuration(200); inner.startAnimation(ta); // 设置回到正常的布局位置 new Handler().postDelayed(new Runnable() { public void run() { /* * modify by taocungui for content disappear bug * @2014.9.17 */ if (normal.left == 0 && normal.top == 0 && normal.right == 0 && normal.bottom == 0) { Log.e(TAG, "TCG: returned from exception"); return; } //taocungui modify end @2014.9.17 inner.clearAnimation(); inner.layout(normal.left, normal.top, normal.right, normal.bottom); normal.setEmpty(); } }, 200); }

2014-09-20

数据挖掘-实用机器学习技术(英文第三版)

数据挖掘经典巨作,介绍,WEKA一本相当不错的书

2011-12-14

模式分析的核方法 中文版

模式分析的核方法,网上貌似中文版的电子书,本人共享上来,望大家喜欢。

2011-11-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除