Stay organized with collections
Save and categorize content based on your preferences.
ViewDebug.CapturedViewProperty
public
static
abstract
@interface
ViewDebug.CapturedViewProperty
implements
Annotation
android.view.ViewDebug.CapturedViewProperty
|
This annotation can be used to mark fields and methods to be dumped when
the view is captured. Methods with this annotation must have no arguments
and must return a valid type of data.
Summary
Public methods |
boolean
|
retrieveReturn()
When retrieveReturn is true, we need to retrieve second level methods
e.g., we need myView.getFirstLevelMethod().getSecondLevelMethod()
we will set retrieveReturn = true on the annotation of
myView.getFirstLevelMethod()
|
Public methods
retrieveReturn
public boolean retrieveReturn ()
When retrieveReturn is true, we need to retrieve second level methods
e.g., we need myView.getFirstLevelMethod().getSecondLevelMethod()
we will set retrieveReturn = true on the annotation of
myView.getFirstLevelMethod()
Returns |
boolean |
true if we need the second level methods |
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,["# ViewDebug.CapturedViewProperty\n\nAdded in [API level 3](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nSummary: [Methods](#pubmethods) \\| [Inherited Methods](#inhmethods) \n\nViewDebug.CapturedViewProperty\n==============================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/view/ViewDebug.CapturedViewProperty \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\nabstract\n@interface\nViewDebug.CapturedViewProperty\n`\n\n\n`\n\n\nimplements\n\n`[Annotation](/reference/java/lang/annotation/Annotation)`\n\n\n`\n\n|---------------------------------------------|\n| android.view.ViewDebug.CapturedViewProperty |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nThis annotation can be used to mark fields and methods to be dumped when\nthe view is captured. Methods with this annotation must have no arguments\nand must return a valid type of data.\n\nSummary\n-------\n\n| ### Public methods ||\n|------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` boolean` | ` `[retrieveReturn](/reference/android/view/ViewDebug.CapturedViewProperty#retrieveReturn())`() ` When retrieveReturn is true, we need to retrieve second level methods e.g., we need myView.getFirstLevelMethod().getSecondLevelMethod() we will set retrieveReturn = true on the annotation of myView.getFirstLevelMethod() |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From interface ` `[java.lang.annotation.Annotation](/reference/java/lang/annotation/Annotation)` ` |-------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` abstract `[Class](/reference/java/lang/Class)`\u003c? extends `[Annotation](/reference/java/lang/annotation/Annotation)`\u003e` | ` `[annotationType](/reference/java/lang/annotation/Annotation#annotationType())`() ` Returns the annotation interface of this annotation. | | ` abstract boolean` | ` `[equals](/reference/java/lang/annotation/Annotation#equals(java.lang.Object))`(`[Object](/reference/java/lang/Object)` obj) ` Returns true if the specified object represents an annotation that is logically equivalent to this one. | | ` abstract int` | ` `[hashCode](/reference/java/lang/annotation/Annotation#hashCode())`() ` Returns the hash code of this annotation. | | ` abstract `[String](/reference/java/lang/String) | ` `[toString](/reference/java/lang/annotation/Annotation#toString())`() ` Returns a string representation of this annotation. | ||\n\nPublic methods\n--------------\n\n### retrieveReturn\n\nAdded in [API level 3](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic boolean retrieveReturn ()\n```\n\nWhen retrieveReturn is true, we need to retrieve second level methods\ne.g., we need myView.getFirstLevelMethod().getSecondLevelMethod()\nwe will set retrieveReturn = true on the annotation of\nmyView.getFirstLevelMethod()\n\n\u003cbr /\u003e\n\n| Returns ||\n|-----------|-------------------------------------------------|\n| `boolean` | true if we need the second level methods \u003cbr /\u003e |"]]