首页 > 移动平台 > 详细

手机屏幕抖动的形式实现

时间:2015-06-22 22:09:44      阅读:325      评论: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://www.cnblogs.com/mengfanrong/p/4593913.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!