Coder Social home page Coder Social logo

Rounded Rectangle about trianglelabelview HOT 2 OPEN

Mr7Cat avatar Mr7Cat commented on June 28, 2024 1
Rounded Rectangle

from trianglelabelview.

Comments (2)

wujushan avatar wujushan commented on June 28, 2024 1

怎么支持圆角?
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

from trianglelabelview.

crazies avatar crazies commented on June 28, 2024

怎么支持圆角?

from trianglelabelview.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.