Last active
January 8, 2018 20:54
-
-
Save iammert/6d46c0cb222aa51730af62dbd53de644 to your computer and use it in GitHub Desktop.
ScalingLayoutOutlineProvider
This file contains hidden or 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
public class ScalingLayoutOutlineProvider extends ViewOutlineProvider { | |
@Override | |
public void getOutline(View view, Outline outline) { | |
outline.setRoundRect(0, 0, width, height, radius); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment