Last active
January 28, 2021 07:32
-
-
Save akexorcist/f6ec7f26c4bc4d55cd0d7e96497ef8be to your computer and use it in GitHub Desktop.
Build Coupon UI - Simple custom view in Android (https://medium.com/@akexorcist/how-we-built-developer-friendly-coupon-ui-in-android-part-2-78933730d335)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CouponLayout : FrameLayout { | |
/* ... */ | |
override fun onDraw(canvas: Canvas?) { | |
super.onDraw(canvas) | |
// Draw something with `canvas` | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment