当HTC手机关闭酷的视觉效果 [英] Cool visual effect when an HTC phone is turning off

查看:115
本文介绍了当HTC手机关闭酷的视觉效果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请你知道如何实现在Android的这种效果(模糊的背景)?

please do you know how to achieve this effect (blur on the background) in Android?

我的HTC野火做到这一点时,即将被关闭。

My HTC WildFire does this when is about to be turned off

推荐答案

我用Google搜索机器人模糊背景,发现<一个href=\"http://www.stealthcopter.com/blog/2010/01/android-blurring-and-dimming-background-windows-from-dialogs/\"相对=nofollow>这个博客帖子。基本上是:

I googled for "android blur background" and found this blog post. Basically:

dialog = new AlertDialog.Builder(this). /*... setTitle and so on ...*/ ;

WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();  
lp.dimAmount=0.0f;  // this sets the amount of darkening
dialog.getWindow().setAttributes(lp);  
dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);

侨侨:)

这篇关于当HTC手机关闭酷的视觉效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆