问题描述
- android 关于用属性动画平移layout后其中button不能响应的问题
-
如题,为什么在layout中的button不能响应了?
ObjectAnimator animator=ObjectAnimator.ofFloat(hiddenLayout,"translationY",0);animator.setDuration(100); animator.start(); Log输出属性动画执行前后layout的getY()未改变,这是为什么?
解决方案
原来是处理Gesturedetecter的时候将事件拦截在acticity了。。。。
解决方案二:
http://blog.csdn.net/xiechengfa/article/details/40862535
时间: 2025-01-21 08:44:36