belongs to Maven artifact com.android.support:design:27.1.0
FloatingActionButton.Behavior
public
static
class
FloatingActionButton.Behavior
extends Behavior<FloatingActionButton>
java.lang.Object | ||
↳ | android.support.design.widget.CoordinatorLayout.Behavior<android.support.design.widget.FloatingActionButton> | |
↳ | android.support.design.widget.FloatingActionButton.Behavior |
Behavior designed for use with FloatingActionButton
instances. Its main function
is to move FloatingActionButton
views so that any displayed Snackbar
s do
not cover them.
Summary
XML attributes | |
---|---|
FloatingActionButton_Behavior_Layout_behavior_autoHide |
Public constructors | |
---|---|
FloatingActionButton.Behavior()
|
|
FloatingActionButton.Behavior(Context context, AttributeSet attrs)
|
Public methods | |
---|---|
boolean
|
getInsetDodgeRect(CoordinatorLayout parent, FloatingActionButton child, Rect rect)
Called when a view is set to dodge view insets. |
boolean
|
isAutoHideEnabled()
Returns whether the associated FloatingActionButton automatically hides when there is not enough space to be displayed. |
void
|
onAttachedToLayoutParams(CoordinatorLayout.LayoutParams lp)
Called when the Behavior has been attached to a LayoutParams instance. |
boolean
|
onDependentViewChanged(CoordinatorLayout parent, FloatingActionButton child, View dependency)
Respond to a change in a child's dependent view This method is called whenever a dependent view changes in size or position outside of the standard layout flow. |
boolean
|
onLayoutChild(CoordinatorLayout parent, FloatingActionButton child, int layoutDirection)
Called when the parent CoordinatorLayout is about the lay out the given child view. |
void
|
setAutoHideEnabled(boolean autoHide)
Sets whether the associated FloatingActionButton automatically hides when there is not enough space to be displayed. |
Inherited methods | |
---|---|
From
class
android.support.design.widget.CoordinatorLayout.Behavior
| |
From
class
java.lang.Object
|
XML attributes
FloatingActionButton_Behavior_Layout_behavior_autoHide
Related methods:
Public constructors
FloatingActionButton.Behavior
FloatingActionButton.Behavior (Context context, AttributeSet attrs)
Parameters | |
---|---|
context |
Context |
attrs |
AttributeSet |
Public methods
getInsetDodgeRect
boolean getInsetDodgeRect (CoordinatorLayout parent, FloatingActionButton child, Rect rect)
Called when a view is set to dodge view insets.
This method allows a behavior to update the rectangle that should be dodged.
The rectangle should be in the parent's coordinate system and within the child's
bounds. If not, a IllegalArgumentException
is thrown.
Parameters | |
---|---|
parent |
CoordinatorLayout : the CoordinatorLayout parent of the view this Behavior is
associated with |
child |
FloatingActionButton : the child view of the CoordinatorLayout this Behavior is associated with |
rect |
Rect : the rect to update with the dodge rectangle |
Returns | |
---|---|
boolean |
true the rect was updated, false if we should use the child's bounds |
isAutoHideEnabled
boolean isAutoHideEnabled ()
Returns whether the associated FloatingActionButton automatically hides when there is not enough space to be displayed.
Related XML Attributes:
Returns | |
---|---|
boolean |
true if enabled |
onAttachedToLayoutParams
void onAttachedToLayoutParams (CoordinatorLayout.LayoutParams lp)
Called when the Behavior has been attached to a LayoutParams instance.
This will be called after the LayoutParams has been instantiated and can be modified.
Parameters | |
---|---|
lp |
CoordinatorLayout.LayoutParams : the LayoutParams instance that this Behavior has been attached to
|
onDependentViewChanged
boolean onDependentViewChanged (CoordinatorLayout parent, FloatingActionButton child, View dependency)
Respond to a change in a child's dependent view
This method is called whenever a dependent view changes in size or position outside of the standard layout flow. A Behavior may use this method to appropriately update the child view in response.
A view's dependency is determined by
layoutDependsOn(CoordinatorLayout, View, View)
or
if child
has set another view as it's anchor.
Note that if a Behavior changes the layout of a child via this method, it should
also be able to reconstruct the correct position in
onLayoutChild
.
onDependentViewChanged
will not be called during normal layout since
the layout of each child view will always happen in dependency order.
If the Behavior changes the child view's size or position, it should return true. The default implementation returns false.
Parameters | |
---|---|
parent |
CoordinatorLayout : the parent view of the given child |
child |
FloatingActionButton : the child view to manipulate |
dependency |
View : the dependent view that changed |
Returns | |
---|---|
boolean |
true if the Behavior changed the child view's size or position, false otherwise |
onLayoutChild
boolean onLayoutChild (CoordinatorLayout parent, FloatingActionButton child, int layoutDirection)
Called when the parent CoordinatorLayout is about the lay out the given child view.
This method can be used to perform custom or modified layout of a child view
in place of the default child layout behavior. The Behavior's implementation can
delegate to the standard CoordinatorLayout measurement behavior by calling
parent.onLayoutChild
.
If a Behavior implements
onDependentViewChanged(CoordinatorLayout, View, View)
to change the position of a view in response to a dependent view changing, it
should also implement onLayoutChild
in such a way that respects those
dependent views. onLayoutChild
will always be called for a dependent view
after its dependency has been laid out.
Parameters | |
---|---|
parent |
CoordinatorLayout : the parent CoordinatorLayout |
child |
FloatingActionButton : child view to lay out |
layoutDirection |
int : the resolved layout direction for the CoordinatorLayout, such as
LAYOUT_DIRECTION_LTR or
LAYOUT_DIRECTION_RTL . |
Returns | |
---|---|
boolean |
true if the Behavior performed layout of the child view, false to request default layout behavior |
setAutoHideEnabled
void setAutoHideEnabled (boolean autoHide)
Sets whether the associated FloatingActionButton automatically hides when there is
not enough space to be displayed. This works with AppBarLayout
and BottomSheetBehavior
.
Related XML Attributes:
Parameters | |
---|---|
autoHide |
boolean : true to enable automatic hiding
|
Annotations
Interfaces
- AppBarLayout.OnOffsetChangedListener
- BaseTransientBottomBar.ContentViewCallback
- BottomNavigationView.OnNavigationItemReselectedListener
- BottomNavigationView.OnNavigationItemSelectedListener
- CoordinatorLayout.AttachedBehavior
- NavigationView.OnNavigationItemSelectedListener
- SwipeDismissBehavior.OnDismissListener
- TabLayout.OnTabSelectedListener
Classes
- AppBarLayout
- AppBarLayout.Behavior
- AppBarLayout.Behavior.DragCallback
- AppBarLayout.Behavior.SavedState
- AppBarLayout.LayoutParams
- AppBarLayout.ScrollingViewBehavior
- BaseTransientBottomBar
- BaseTransientBottomBar.BaseCallback
- BottomNavigationView
- BottomSheetBehavior
- BottomSheetBehavior.BottomSheetCallback
- BottomSheetBehavior.SavedState
- BottomSheetDialog
- BottomSheetDialogFragment
- CollapsingToolbarLayout
- CollapsingToolbarLayout.LayoutParams
- CoordinatorLayout
- CoordinatorLayout.Behavior
- CoordinatorLayout.LayoutParams
- CoordinatorLayout.SavedState
- FloatingActionButton
- FloatingActionButton.Behavior
- FloatingActionButton.OnVisibilityChangedListener
- NavigationView
- NavigationView.SavedState
- Snackbar
- Snackbar.Callback
- SwipeDismissBehavior
- TabItem
- TabLayout
- TabLayout.Tab
- TabLayout.TabLayoutOnPageChangeListener
- TabLayout.ViewPagerOnTabSelectedListener
- TextInputEditText
- TextInputLayout
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 2024-04-11 UTC.