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

手机屏幕窗口抖动的实现

时间:2015-03-16 09:54:05      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:抖动   手机屏幕抖动   

昨天在qq群上有人问到类似QQ的聊天窗口抖动效果是怎么实现的,在这里我就简单的实现了一下,贴上代码:

<span style="font-family:Courier New;">                final View decorView = ((ViewGroup) findViewById(android.R.id.content)).getChildAt(0);

		Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
		vibrator.vibrate(new long[] { 200, 100, 200, 100 }, 3);

		TranslateAnimation translateAnimation = new TranslateAnimation(50, 150,200, 50);
		translateAnimation.setDuration(2000);
		Interpolator interpolator = new CycleInterpolator(5);
		translateAnimation.setInterpolator(interpolator);
		decorView.startAnimation(translateAnimation);</span>

是的,就是这么简单

手机屏幕窗口抖动的实现

标签:抖动   手机屏幕抖动   

原文地址:http://blog.csdn.net/andywuchuanlong/article/details/44300497

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