当前位置: 代码迷 >> Android >> android 改变系统默许动态壁纸
  详细解决方案

android 改变系统默许动态壁纸

热度:68   发布时间:2016-05-01 12:57:45.0
android 改变系统默认动态壁纸

./device/samsung/xxxx/overlay/frameworks/base/core/res/res/values/config.xml

?

  <string name="default_wallpaper_component">@null</string>    <integer name="config_deskDockKeepsScreenOn">0</integer>    <integer name="config_carDockKeepsScreenOn">1</integer>    <!-- Default color for notification LED is white -->    <color name="config_defaultNotificationColor">#ffffffff</color>    <!-- Default blink frequency for notification LED is 9 seconds. -->    <integer name="config_defaultNotificationLedOff">9000</integer>    <!-- Component name of the service providing network location support. -->    <string name="config_networkLocationProvider">com.google.android.location.NetworkLocationProvider</string>    <!-- Component name of the service providing geocoder API support. -->    <string name="config_geocodeProvider">com.google.android.location.GeocodeProvider</string>

?在这里改

  <string name="default_wallpaper_component">@null</string>
[email protected]/com.android.wallpaper.nexus.NexusWallpaper
  相关解决方案