OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bottomSheet
(Results
1 - 5
of
5
) sorted by null
/frameworks/support/design/tests/src/android/support/design/widget/
BottomSheetBehaviorWithInsetsTest.java
41
ViewGroup
bottomSheet
= activity.mBottomSheet;
42
assertThat(
bottomSheet
.getTop(),
BottomSheetBehaviorTest.java
77
public void onStateChanged(@NonNull View
bottomSheet
,
87
public void onSlide(@NonNull View
bottomSheet
, float slideOffset) {
277
ViewGroup
bottomSheet
= getBottomSheet();
278
assertThat(
bottomSheet
.getTop(),
433
// Make the
bottomsheet
invisible
464
final ViewGroup
bottomSheet
= getBottomSheet();
471
bottomSheet
.addView(scroll, new ViewGroup.LayoutParams(
/frameworks/support/design/src/android/support/design/widget/
BottomSheetDialog.java
112
FrameLayout
bottomSheet
= (FrameLayout) coordinator.findViewById(R.id.design_bottom_sheet);
113
mBehavior = BottomSheetBehavior.from(
bottomSheet
);
117
bottomSheet
.addView(view);
119
bottomSheet
.addView(view, params);
166
public void onStateChanged(@NonNull View
bottomSheet
,
174
public void onSlide(@NonNull View
bottomSheet
, float slideOffset) {
BottomSheetBehavior.java
63
* @param
bottomSheet
The bottom sheet view.
68
public abstract void onStateChanged(@NonNull View
bottomSheet
, @State int newState);
73
* @param
bottomSheet
The bottom sheet view.
79
public abstract void onSlide(@NonNull View
bottomSheet
, float slideOffset);
569
View
bottomSheet
= mViewRef.get();
570
if (
bottomSheet
!= null && mCallback != null) {
571
mCallback.onStateChanged(
bottomSheet
, state);
718
View
bottomSheet
= mViewRef.get();
719
if (
bottomSheet
!= null && mCallback != null) {
721
mCallback.onSlide(
bottomSheet
, (float) (mMaxOffset - top) / mPeekHeight)
[
all
...]
/prebuilts/sdk/current/support/design/libs/
android-support-design.jar
Completed in 3334 milliseconds