wvmack
wvmack

Reputation: 11

Live wallpaper for android xml

Is it possible to use xml layouts in live wallpapers. I have spent countless hours trying to code. Have also read numerous books and logs. But still no answer

Upvotes: 1

Views: 920

Answers (1)

dsandler
dsandler

Reputation: 2481

A live wallpaper must do all of its drawing using the Surface and Canvas APIs. You could try to inflate some Views from XML and draw() them to a Canvas but it's probably more trouble than it's worth.

Upvotes: 1

Related Questions