Skip to content

Instantly share code, notes, and snippets.

@mistarA
Last active August 25, 2019 07:45
Show Gist options
  • Save mistarA/21a2e89d163b6075b7a0cad1765304a2 to your computer and use it in GitHub Desktop.
Save mistarA/21a2e89d163b6075b7a0cad1765304a2 to your computer and use it in GitHub Desktop.
styleable declarations
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="color" format="color"/>
<attr name="widthStroke" format="integer"/>
<attr name="radius" format="integer"/>
<declare-styleable name="MyCustomView">
<attr name="square_color" format="color"/>
</declare-styleable>
<declare-styleable name="CircularProgressTickView">
<attr name="color" />
<attr name="widthStroke"/>
<attr name="radius"/>
</declare-styleable>
<declare-styleable name="CircleView">
<attr name="color" />
<attr name="widthStroke"/>
<attr name="radius"/>
</declare-styleable>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment