I want to send text from MainActivity to WallpaperService class to draw Text.
Main Activity class-->
Intent in = new Intent();
in.setAction(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
in.putExtra("name", "sample text");
startActivity(in);
WallpaperService class -->
Bundle bundle = getIntent().getExtras();
String value = bundle.getString("key");
But the getIntent() method is not available in WallpaperService class.