Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rounded Rectangle #5

Open
Mr7Cat opened this issue Sep 20, 2016 · 2 comments
Open

Rounded Rectangle #5

Mr7Cat opened this issue Sep 20, 2016 · 2 comments

Comments

@Mr7Cat
Copy link

Mr7Cat commented Sep 20, 2016

How to support Rounded Rectangle? Please help solve this problem, thank you !

@crazies
Copy link

crazies commented Jan 3, 2018

怎么支持圆角?

@wujushan
Copy link

wujushan commented Jan 29, 2021

怎么支持圆角?
How to support Rounded Rectangle? Please help solve this problem, thank you !

Use method path.quadTo() or path.rQuadTo() can meet your requirement, for example:
Assume the radius is what you want defined in your View, the code snippet below in method onDraw() can work for you

...
    if (corner.top()) {
            path.moveTo(0, height);
//            path.lineTo(width / 2, 0);
            path.lineTo(width / 2 - radius, 0 + radius);
            path.quadTo(width / 2, 0, width / 2 + radius, 0 + radius);
            path.lineTo(width, height);
        } else {
            path.moveTo(0, 0);
//            path.lineTo(width / 2, height);
            path.lineTo(width / 2 -radius, height - radius);
            path.quadTo(width /2, height, width/2 +radius, height - radius);
            path.lineTo(width, 0);
        }

For more flexible, you can define attribute radius in attrs.xml file, so that you can define the radius you want in your layout file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants