Android : Custom Android Layer-List

on Tuesday, December 9, 2014


I am tring below code for make shape look like below image, is that possible to make below screenshot by only layer-list concept?


What i hv tried ?


This is my code :



<item>
<shape android:shape="rectangle" >
<solid android:color="#00f" />

<padding android:bottom="2dp" />
</shape>
</item>
<item android:bottom="10dp">
<shape android:shape="rectangle" >
<solid android:color="#fff" />

<padding
android:left="2dp"
android:right="2dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle" >
<solid android:color="#fff" />
</shape>
</item>
<item>
<shape>

<!-- set the shadow color here -->
<stroke
android:width="2dp"
android:color="@color/generic_shadow_color" />
<!-- setting the thickness of shadow (positive value will give shadow on that side) -->
<padding
android:bottom="2dp"
android:left="-1dp"
android:right="2dp"
android:top="-1dp" />

<corners android:radius="7dp" />
</shape>
</item>
<!-- Background -->
<item>
<shape>
<solid android:color="@color/generic_shadow_color" />

<corners android:radius="7dp" />
</shape>
</item>


Result Shape i want is :


enter image description here


0 comments:

Post a Comment