Stay organized with collections
Save and categorize content based on your preferences.
Join
class Join
The Join specifies the treatment where lines and curve segments join on a stroked path. The default is MITER.
Summary
Enum values |
The outer edges of a join meet with a straight line
|
The outer edges of a join meet at a sharp angle
|
The outer edges of a join meet in a circular arc.
|
Enum values
BEVEL
enum val BEVEL : Paint.Join
The outer edges of a join meet with a straight line
MITER
enum val MITER : Paint.Join
The outer edges of a join meet at a sharp angle
ROUND
enum val ROUND : Paint.Join
The outer edges of a join meet in a circular arc.
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# Paint.Join\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nJoin\n====\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/graphics/Paint.Join \"View this page in Java\") \n\n```\nclass Join\n```\n\n|---|---|----------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) |||\n| ↳ | [kotlin.Enum](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html)\\\u003c[android.graphics.Paint.Join](#)\\\u003e ||\n| | ↳ | [android.graphics.Paint.Join](#) |\n\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [Paint.Join.BEVEL](#ENUM_VALUE:BEVEL), [Paint.Join.MITER](#ENUM_VALUE:MITER), [Paint.Join.ROUND](#ENUM_VALUE:ROUND) |---------------------------------------|-----------------------------------------------------| | [Paint.Join.BEVEL](#ENUM_VALUE:BEVEL) | The outer edges of a join meet with a straight line | | [Paint.Join.MITER](#ENUM_VALUE:MITER) | The outer edges of a join meet at a sharp angle | | [Paint.Join.ROUND](#ENUM_VALUE:ROUND) | The outer edges of a join meet in a circular arc. | |\n\nThe Join specifies the treatment where lines and curve segments join on a stroked path. The default is MITER.\n\nSummary\n-------\n\n| Enum values ||\n|--------------------------------------------------------------------------------|---|\n| [BEVEL](#ENUM_VALUE:BEVEL) The outer edges of a join meet with a straight line |\n| [MITER](#ENUM_VALUE:MITER) The outer edges of a join meet at a sharp angle |\n| [ROUND](#ENUM_VALUE:ROUND) The outer edges of a join meet in a circular arc. |\n\nEnum values\n-----------\n\n### BEVEL\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val BEVEL : Paint.Join\n```\n\nThe outer edges of a join meet with a straight line \n\n### MITER\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val MITER : Paint.Join\n```\n\nThe outer edges of a join meet at a sharp angle \n\n### ROUND\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val ROUND : Paint.Join\n```\n\nThe outer edges of a join meet in a circular arc."]]