I am developing an App where i need to create Albums and display them in a GridView. Now i am just displaying them without any background but i need a background for the Album cover so that it looks like a pile of photos. Background something like this:
I tried out this but not it's working:
first i created a single background like this:
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#FFFFFF" />
<stroke
android:width="1dp"
android:color="#000000" />
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" />
</shape>
And then i used a layer-list to draw the stack with rotation:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<rotate
android:drawable="@drawable/thumb_bg"
android:fromDegrees="90"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="100" />
<rotate
android:drawable="@drawable/thumb_bg"
android:fromDegrees="90"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="110" />
<rotate
android:drawable="@drawable/thumb_bg"
android:fromDegrees="90"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="120" />
</layer-list>