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