标签:
android:pivotX="50"这种方法使用绝对位置定位,相当于代码中的 Animation.ABSOLUTE
android:pivotX="50%"这种方法相对于控件本身定位,相当于代码中的 Animation.RELATIVE_TO_SELF
android:pivotX="50%p" 这种方法相对于控件 的父控件定位,相当于代码中上 Animation.RELATIVE_TO_PARENT
动画参考:http://blog.csdn.net/huangbiao86/article/details/6683665
http://www.cnblogs.com/yc-755909659/p/4290114.html
2、Activity和window动画的区别和使用
参考:http://www.cnblogs.com/sunzn/p/3854009.html
http://my.oschina.net/ososchina/blog/355239
标签:
原文地址:http://www.cnblogs.com/zhongyinghe/p/5657297.html