我正在开发一个自动在特定日期设置指定壁纸的应用程序。实际上我还想在指定的壁纸上设置特定的文字。我搜索它但没有找到任何解决方案。是否可以在壁纸中设置文本视图?如果有可能请帮我在壁纸上设置文字。
答案 0 :(得分:1)
实际上,您可以使用闹钟管理器类设置预定壁纸以触发意图,并使用画布或动态壁纸设置文本
// Button to set the Wallpaper
public void onClick(View view) {
Intent intent = new Intent(
WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT,
new ComponentName(this, MyWallpaperService.class));
startActivity(intent);
}