Skip to content

Instantly share code, notes, and snippets.

@mammuth
Created April 9, 2015 13:00
Show Gist options
  • Save mammuth/fb795d8e31483a22822b to your computer and use it in GitHub Desktop.
Save mammuth/fb795d8e31483a22822b to your computer and use it in GitHub Desktop.
[Android] GoogleNow like Card as a XML Background Drawable
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle"
android:dither="true">
<corners android:radius="3dp"/>
<solid android:color="#ccc" />
</shape>
</item>
<item android:bottom="3dp">
<shape android:shape="rectangle"
android:dither="true">
<corners android:radius="3dp" />
<solid android:color="@android:color/white" />
<padding android:bottom="-7dp"
android:left="10dp"
android:right="10dp"
android:top="9dp" />
</shape>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment