Skip to content

Instantly share code, notes, and snippets.

@RohitSurwase
Last active October 5, 2017 15:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save RohitSurwase/5fd3b0c4f27a7968d5eb577a50286460 to your computer and use it in GitHub Desktop.
Vector drawable for heart icon.
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
<!-- intrinsic size of the drawable -->
android:height="256dp"
android:width="256dp"
<!-- size of the virtual canvas -->
android:viewportWidth="32"
android:viewportHeight="32">
<!-- draw a path -->
<path android:fillColor="#8fff"
android:pathData="M20.5,9.5c-1.955,0,-3.83,1.268,-4.5,3c-0.67,-1.732,-2.547,-3,-4.5,-3C8.957,9.5,7,11.432,7,
14c0,3.53,3.793,6.257,9,11.5 c5.207,-5.242,9,-7.97,9,-11.5C25,11.432,23.043,9.5,20.5,9.5z" />
</vector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment