Searched defs:BottomSheetBehavior (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/design/src/android/support/design/widget/
H A DBottomSheetBehavior.java56 public class BottomSheetBehavior<V extends View> extends CoordinatorLayout.Behavior<V> { class in inherits:CoordinatorLayout.Behavior
174 public BottomSheetBehavior() { method in class:BottomSheetBehavior
183 public BottomSheetBehavior(Context context, AttributeSet attrs) { method in class:BottomSheetBehavior
802 * A utility function to get the {@link BottomSheetBehavior} associated with the {@code view}.
804 * @param view The {@link View} with {@link BottomSheetBehavior}.
805 * @return The {@link BottomSheetBehavior} associated with the {@code view}.
808 public static <V extends View> BottomSheetBehavior<V> from(V view) {
815 if (!(behavior instanceof BottomSheetBehavior)) {
817 "The view is not associated with BottomSheetBehavior");
819 return (BottomSheetBehavior<
[all...]

Completed in 58 milliseconds