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
79
public void onStateChanged(@NonNull View
bottomSheet
,
89
public void onSlide(@NonNull View
bottomSheet
, float slideOffset) {
280
ViewGroup
bottomSheet
= getBottomSheet();
281
assertThat(
bottomSheet
.getTop(),
434
// Make the
bottomsheet
invisible
505
final ViewGroup
bottomSheet
= getBottomSheet();
512
bottomSheet
.addView(scroll, new ViewGroup.LayoutParams(
516
view.setMinimumHeight(
bottomSheet
.getHeight() + 1000);
[
all
...]
/frameworks/support/design/src/android/support/design/widget/
BottomSheetDialog.java
134
FrameLayout
bottomSheet
= (FrameLayout) coordinator.findViewById(R.id.design_bottom_sheet);
135
mBehavior = BottomSheetBehavior.from(
bottomSheet
);
139
bottomSheet
.addView(view);
141
bottomSheet
.addView(view, params);
153
ViewCompat.setAccessibilityDelegate(
bottomSheet
, new AccessibilityDelegateCompat() {
175
bottomSheet
.setOnTouchListener(new View.OnTouchListener() {
218
public void onStateChanged(@NonNull View
bottomSheet
,
226
public void onSlide(@NonNull View
bottomSheet
, float slideOffset) {
BottomSheetBehavior.java
62
* @param
bottomSheet
The bottom sheet view.
67
public abstract void onStateChanged(@NonNull View
bottomSheet
, @State int newState);
72
* @param
bottomSheet
The bottom sheet view.
78
public abstract void onSlide(@NonNull View
bottomSheet
, float slideOffset);
572
View
bottomSheet
= mViewRef.get();
573
if (
bottomSheet
!= null && mCallback != null) {
574
mCallback.onStateChanged(
bottomSheet
, state);
724
View
bottomSheet
= mViewRef.get();
725
if (
bottomSheet
!= null && mCallback != null) {
727
mCallback.onSlide(
bottomSheet
, (float) (mMaxOffset - top)
[
all
...]
/prebuilts/sdk/current/support/design/libs/
android-support-design.jar
Completed in 371 milliseconds