I.MX6 android 设置 默认 动态桌面

/************************************************************************
 *                    I.MX6 android 设置 默认 动态桌面
 * 声明:
 *     对于Android的桌面,调试显示部分的时候还是喜欢用动态的桌面进行调试,
 * 感觉就是会好点一样。
 * 
 *                                     2016-1-21 深圳 南山平山村 曾剑锋
 ***********************************************************************/


一、参考文章:
    1. Android4.0 默认静、动态桌面设置
        http://blog.csdn.net/yicao821/article/details/7757800
    2. Android Settings中的默认设置
        http://blog.sina.com.cn/s/blog_a29b591501016zfq.html

二、解决方法:
    cat frameworks/base/core/res/res/values/config.xml
        ......
        <!-- Component name of the default wallpaper. This will be ImageWallpaper if not
            specified -->
        <!--
        <string name="default_wallpaper_component" translatable="false">@null</string>
        -->
        <string name="default_wallpaper_component">com.android.wallpaper/.fall.FallWallpaper</string>

        <!-- True if WallpaperService is enabled -->
        <bool name="config_enableWallpaperService">true</bool>
        ......

 

上一篇:见招拆招,轻松限制不明客户端向DHCP服务器获取IP地址


下一篇:Windows DHCP Server基于MAC地址过滤客户端请求实现IP地址的分配