-
- All Implemented Interfaces:
-
java.lang.annotation.Annotation
@Deprecated()@Retention(value = RetentionPolicy.RUNTIME) public @interface CoordinatorLayout.DefaultBehavior
Defines the default Behavior of a View class.
When writing a custom view, use this annotation to define the default behaviorwhen used as a direct child of an CoordinatorLayout. The default behavior can beoverridden using setBehavior.
Example:
@DefaultBehavior(MyBehavior.class)
-
-
Method Summary
Modifier and Type Method Description abstract Class<out CoordinatorLayout.Behavior>
value()
-
-
Method Detail
-
value
abstract Class<out CoordinatorLayout.Behavior> value()
-
-
-
-