码迷,mamicode.com
首页 > 移动开发 > 详细

android view(image,imageButton,...)的旋转

时间:2015-06-20 17:09:43      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

废话不多,上代码:
                final Animation rotateAnimation = new RotateAnimation(0f, 360f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
		final ImageButton buttonDraw = (ImageButton) findViewById(R.id.drawer_button);
		buttonDraw.setOnClickListener(new OnClickListener() 
		{
			@Override
			public void onClick(View v)
                        {
				rotateAnimation.setDuration(300);
				buttonDraw.startAnimation(rotateAnimation);
			}
		});

第一行前两个参数是旋转的起始与终止位置,后面四个看提示的pivot,就知道是个轴,0.5代表组件的中间。

android view(image,imageButton,...)的旋转

标签:

原文地址:http://blog.csdn.net/qingzhouzhen/article/details/46574077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!