I have a layer list object, it contain two images, one is background, and the other is a rotation disk image which will be raotated at the top of the background image.
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/ android"> <item android:drawable="@drawable/player_bg" /> <item android:top="166dp" > <bitmap android:id="@+id/disk_bg" android:src="@drawable/cd" android:gravity="center" /> </item> </layer-list> I use this layer-list as a layout background, but I don't know how to get the animation to work in layer-list item. can you help me, many thanks to you~ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

