Stay organized with collections
Save and categorize content based on your preferences.
Blur
class Blur
Summary
Enum values |
Blur inside the border, draw nothing outside.
|
Blur inside and outside the original border.
|
Draw nothing inside the border, blur outside.
|
Draw solid inside the border, blur outside.
|
Enum values
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,["# BlurMaskFilter.Blur\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nBlur\n====\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/graphics/BlurMaskFilter.Blur \"View this page in Java\") \n\n```\nclass Blur\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.BlurMaskFilter.Blur](#)\\\u003e ||\n| | ↳ | [android.graphics.BlurMaskFilter.Blur](#) |\n\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [BlurMaskFilter.Blur.INNER](#ENUM_VALUE:INNER), [BlurMaskFilter.Blur.NORMAL](#ENUM_VALUE:NORMAL), [BlurMaskFilter.Blur.OUTER](#ENUM_VALUE:OUTER), [BlurMaskFilter.Blur.SOLID](#ENUM_VALUE:SOLID) |--------------------------------------------------|-----------------------------------------------| | [BlurMaskFilter.Blur.INNER](#ENUM_VALUE:INNER) | Blur inside the border, draw nothing outside. | | [BlurMaskFilter.Blur.NORMAL](#ENUM_VALUE:NORMAL) | Blur inside and outside the original border. | | [BlurMaskFilter.Blur.OUTER](#ENUM_VALUE:OUTER) | Draw nothing inside the border, blur outside. | | [BlurMaskFilter.Blur.SOLID](#ENUM_VALUE:SOLID) | Draw solid inside the border, blur outside. | |\n\nSummary\n-------\n\n| Enum values ||\n|---------------------------------------------------------------------------|---|\n| [INNER](#ENUM_VALUE:INNER) Blur inside the border, draw nothing outside. |\n| [NORMAL](#ENUM_VALUE:NORMAL) Blur inside and outside the original border. |\n| [OUTER](#ENUM_VALUE:OUTER) Draw nothing inside the border, blur outside. |\n| [SOLID](#ENUM_VALUE:SOLID) Draw solid inside the border, blur outside. |\n\nEnum values\n-----------\n\n### INNER\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val INNER : BlurMaskFilter.Blur\n```\n\nBlur inside the border, draw nothing outside. \n\n### NORMAL\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val NORMAL : BlurMaskFilter.Blur\n```\n\nBlur inside and outside the original border. \n\n### OUTER\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val OUTER : BlurMaskFilter.Blur\n```\n\nDraw nothing inside the border, blur outside. \n\n### SOLID\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val SOLID : BlurMaskFilter.Blur\n```\n\nDraw solid inside the border, blur outside."]]