HomeSort by relevance Sort by last modified time
    Searched refs:mBehavior (Results 1 - 9 of 9) sorted by null

  /frameworks/support/samples/SupportDesignDemos/src/main/java/com/example/android/support/design/widget/
BottomSheetUsageBase.java 36 protected BottomSheetBehavior<LinearLayout> mBehavior;
43 mBehavior = BottomSheetBehavior.from((LinearLayout) findViewById(R.id.bottom_sheet));
48 if (mBehavior != null) {
49 int state = mBehavior.getState();
52 mBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
BottomSheetWithFab.java 41 if (v.getId() == R.id.toggle && mBehavior != null) {
43 if (mBehavior.getState() == BottomSheetBehavior.STATE_HIDDEN) {
44 mBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
46 mBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
62 mBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
BottomSheetDynamicContent.java 42 private BottomSheetBehavior<RecyclerView> mBehavior;
52 if (mBehavior != null) {
53 mBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
61 if (mBehavior != null) {
62 mBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
67 if (mBehavior != null) {
68 mBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
72 if (mBehavior != null) {
73 mBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
92 mBehavior = BottomSheetBehavior.from(list)
    [all...]
BottomSheetHideable.java 51 mBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
78 if (v.getId() == R.id.toggle && mBehavior != null) {
80 if (mBehavior.getState() == BottomSheetBehavior.STATE_HIDDEN) {
81 mBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
83 mBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
  /frameworks/av/media/libeffects/testlibs/
AudioFormatAdapter.h 64 mBehavior = behavior;
80 if (mBehavior == EFFECT_BUFFER_ACCESS_WRITE) {
85 } else if (mBehavior == EFFECT_BUFFER_ACCESS_ACCUMULATE) {
114 uint32_t mBehavior;
150 if (mBehavior == EFFECT_BUFFER_ACCESS_WRITE) {
154 } else if (mBehavior == EFFECT_BUFFER_ACCESS_ACCUMULATE) {
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
BaseWrapContentWithAspectRatioTest.java 55 MeasureBehavior mBehavior;
58 mBehavior = behavior;
80 mBehavior.onMeasure(this, widthMeasureSpec, heightMeasureSpec);
86 mBehavior.onLayout(changed, left, top, right, bottom);
94 mBehavior.setLayoutParams(this);
BaseWrapContentTest.java 472 return casted.mView.mBehavior.getId();
  /frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
CoordinatorLayout.java     [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 182 private int mBehavior;
264 mBehavior = a.getInt(R.styleable.ProgressBar_indeterminateBehavior, mBehavior);
537 mBehavior = AlphaAnimation.RESTART;
    [all...]

Completed in 241 milliseconds