Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active January 21, 2021 16:59
Show Gist options
  • Save akexorcist/61a8dbc9d7c0751c2fdb5f4e2e707452 to your computer and use it in GitHub Desktop.
Save akexorcist/61a8dbc9d7c0751c2fdb5f4e2e707452 to your computer and use it in GitHub Desktop.
Build Coupon UI - View attributes
<!-- res/values/attrs.xml -->
<resources>
<declare-styleable name="CouponLayout">
<attr name="coupon_borderWidth" format="dimension" />
<attr name="coupon_cornerRadius" format="dimension" />
<attr name="coupon_semiCircleRadius" format="dimension" />
<attr name="coupon_backgroundColor" format="color|reference" />
<attr name="coupon_borderColor" format="color|reference" />
<attr name="coupon_cornerDirection" format="enum">
<enum name="none" value="0x00" />
<enum name="topLeft" value="0x01" />
<enum name="topRight" value="0x02" />
<enum name="bottomLeft" value="0x04" />
<enum name="bottomRight" value="0x08" />
<enum name="top" value="0x03" />
<enum name="left" value="0x05" />
<enum name="right" value="0x0A" />
<enum name="bottom" value="0xC" />
<enum name="all" value="0x0F" />
</attr>
<attr name="coupon_semiCircleDirection" format="enum">
<enum name="none" value="0x00" />
<enum name="left" value="0x01" />
<enum name="top" value="0x02" />
<enum name="right" value="0x04" />
<enum name="bottom" value="0x08" />
<enum name="horizontal" value="0x05" />
<enum name="vertical" value="0x0A" />
<enum name="all" value="0x0F" />
</attr>
</declare-styleable>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment