Skip to content

Instantly share code, notes, and snippets.

@pacificregmi
Created January 21, 2016 06:30
Show Gist options
  • Save pacificregmi/f523f3c737d980d3a9d2 to your computer and use it in GitHub Desktop.
Save pacificregmi/f523f3c737d980d3a9d2 to your computer and use it in GitHub Desktop.
Adding Badge (Item Count) to Android Button - badge_item_count.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="8dp" />
<solid android:color="#f20000" />
<stroke
android:width="2dip"
android:color="#FFF" />
<padding
android:bottom="6dp"
android:left="6dp"
android:right="6dp"
android:top="6dp" />
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment