flashview icon indicating copy to clipboard operation
flashview copied to clipboard

首页广告位轮播

Results 6 flashview issues
Sort by recently updated
recently updated
newest added

原因是position这个变量的值引起的,修正也很简单: if(position=0){ ViewHelper.setPivotX(view, 0); ViewHelper.setPivotY(view, view.getMeasuredHeight() \* 0.5f); ViewHelper.setRotationY(view, 90f \* position); }else if(position=-1){ ViewHelper.setPivotX(view, view.getMeasuredWidth()); ViewHelper.setPivotY(view, view.getMeasuredHeight() \* 0.5f); //只在Y轴做旋转操作 ViewHelper.setRotationY(view, 90f \* position); }

非常感谢将军的分享!在使用该控件的过程中,我的程序出现了anr,查看日志后发现可能是该控件引起的,下面附上anr日志(少部分,太长了),请将军指导! ----- pid 3210 at 2015-09-06 11:53:23 ----- Cmd line: com.allin.social JNI: CheckJNI is off; workarounds are off; pins=0; globals=348 DALVIK THREADS: (mutexes: tll=0 tsl=0 tscl=0 ghl=0) "main" prio=5 tid=1...

为什么不部署到gradle上呢?这样会方便很多啊

您好,看到您的开源项目觉得对于做一个翻页广告很方便。 我开始学习了您的开源项目。首先将jar放入自己的项目的libs包中 ![jar](https://cloud.githubusercontent.com/assets/5761213/5831000/1d766d18-a164-11e4-9c13-967f1576b42e.png) 随后在layout文件中引入这个FlashView。 ![flashview](https://cloud.githubusercontent.com/assets/5761213/5831008/497fdfd4-a164-11e4-82c8-c3bc4dd4b28e.png) 最后在Activity中对这个控件进行设置图片url ![imageurl](https://cloud.githubusercontent.com/assets/5761213/5831026/a15701ce-a164-11e4-86be-06848ab0fcee.png) 但是在真机上测试时遇到了问题,引入FlashView这个控件会无法初始化 报错的日志如下 ![errorlog](https://cloud.githubusercontent.com/assets/5761213/5831053/22f43abc-a165-11e4-9e43-8e1438fd55b5.png) 不知道哪里出问题了,感谢您百忙之中查看我的问题,祝您生活愉快!