摘要:
Animation主要有四大属性,分别是淡入淡出,绕轴旋转,变化大小,位移变化,如图:这些属性还有一些共同的方法:下面是一个实例代码:public class MainActivity extends Activity implements OnClickListener{ /** * 定义四个按钮和一张图片 */ private ImageView imageView = null; private Button rotateButton = null; private Button scaleButton = null; private Button alphaButton = null; 阅读全文