我在
Android屏幕保护程序上寻找示例代码.我试过谷歌但很难找到任何有用的结果.有没有人对此有任何好的样品?
我看到的是Custom Android Screensaver (or sleep screen)
If you mean creating your own lock
screen,there is no provision for this
in the Android SDK
但我对此并不了解,因为我看到Android Market中有如此多的屏幕保护应用程序示例.
解决方法
你真的在谈论屏幕保护程序吗?还是自定义锁屏?
HTC Sense和Motoblur等OEM皮肤的自定义锁屏是通过修改Android平台本身完成的.
市场上也有一些定制锁屏.要实现此目的,您需要将以下intent过滤器添加到要用作锁定屏幕的Activity的AndroidManifest.xml文件中:
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.HOME" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter>
这样做是一个黑客攻击,因为会弹出一个对话框询问用户他想要使用哪个(你的或默认). Lock 2.0是以这种方式工作的自定义锁定屏幕的示例.