Skip to content

Commit 386d47b

Browse files
dsn5ftafohrman
authored andcommittedSep 21, 2023
[Catalog][Predictive Back][Bottom Sheet] Update bottom sheet state handling to be more accurate in demos
Fixes inaccurate state label text and back callback enabled flag after rotation Resolves #3573 Resolves #3575 Resolves #3577 Resolves #3574 Resolves #3576 Resolves #3578 PiperOrigin-RevId: 566286622 (cherry picked from commit f9102c7)
1 parent bcc2f91 commit 386d47b

File tree

2 files changed

+76
-61
lines changed

2 files changed

+76
-61
lines changed
 

‎catalog/java/io/material/catalog/bottomappbar/BottomAppBarMainDemoFragment.java

+20-15
Original file line numberDiff line numberDiff line change
@@ -208,25 +208,12 @@ protected void setUpBottomDrawer(View view) {
208208
bottomDrawerBehavior = BottomSheetBehavior.from(bottomDrawer);
209209
bottomDrawerBehavior.setUpdateImportantForAccessibilityOnSiblings(true);
210210
bottomDrawerBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
211+
bottomDrawer.post(() -> updateBackHandlingEnabled(bottomDrawerBehavior.getState()));
211212
bottomDrawerBehavior.addBottomSheetCallback(
212213
new BottomSheetCallback() {
213214
@Override
214215
public void onStateChanged(@NonNull View bottomSheet, int newState) {
215-
switch (newState) {
216-
case BottomSheetBehavior.STATE_EXPANDED:
217-
case BottomSheetBehavior.STATE_HALF_EXPANDED:
218-
bottomDrawerOnBackPressedCallback.setEnabled(true);
219-
break;
220-
case BottomSheetBehavior.STATE_COLLAPSED:
221-
case BottomSheetBehavior.STATE_HIDDEN:
222-
bottomDrawerOnBackPressedCallback.setEnabled(false);
223-
break;
224-
case BottomSheetBehavior.STATE_DRAGGING:
225-
case BottomSheetBehavior.STATE_SETTLING:
226-
default:
227-
// Do nothing, only change callback enabled for "stable" states.
228-
break;
229-
}
216+
updateBackHandlingEnabled(newState);
230217

231218
if (newState == BottomSheetBehavior.STATE_HIDDEN) {
232219
barNavView.sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED);
@@ -245,6 +232,24 @@ public void onSlide(@NonNull View bottomSheet, float slideOffset) {}
245232
v -> bottomDrawerBehavior.setState(BottomSheetBehavior.STATE_HALF_EXPANDED));
246233
}
247234

235+
private void updateBackHandlingEnabled(int state) {
236+
switch (state) {
237+
case BottomSheetBehavior.STATE_EXPANDED:
238+
case BottomSheetBehavior.STATE_HALF_EXPANDED:
239+
bottomDrawerOnBackPressedCallback.setEnabled(true);
240+
break;
241+
case BottomSheetBehavior.STATE_COLLAPSED:
242+
case BottomSheetBehavior.STATE_HIDDEN:
243+
bottomDrawerOnBackPressedCallback.setEnabled(false);
244+
break;
245+
case BottomSheetBehavior.STATE_DRAGGING:
246+
case BottomSheetBehavior.STATE_SETTLING:
247+
default:
248+
// Do nothing, only change callback enabled for "stable" states.
249+
break;
250+
}
251+
}
252+
248253
private void showSnackbar(CharSequence text) {
249254
Snackbar.make(coordinatorLayout, text, Snackbar.LENGTH_SHORT)
250255
.setAnchorView(fab.getVisibility() == View.VISIBLE ? fab : bar)

‎catalog/java/io/material/catalog/bottomsheet/BottomSheetMainDemoFragment.java

+56-46
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,12 @@ public View onCreateDemoView(
153153
persistentBottomSheetBehavior = BottomSheetBehavior.from(bottomSheetPersistent);
154154
persistentBottomSheetBehavior.addBottomSheetCallback(
155155
createBottomSheetCallback(bottomSheetText));
156+
bottomSheetPersistent.post(
157+
() -> {
158+
int state = persistentBottomSheetBehavior.getState();
159+
updateStateTextView(bottomSheetPersistent, bottomSheetText, state);
160+
updateBackHandlingEnabled(state);
161+
});
156162
setupBackHandling(persistentBottomSheetBehavior);
157163

158164
Button button1 = view.findViewById(R.id.cat_bottomsheet_button);
@@ -251,39 +257,39 @@ protected int getStandardBottomSheetLayout() {
251257
}
252258

253259
private BottomSheetCallback createBottomSheetCallback(@NonNull TextView text) {
254-
// Set up BottomSheetCallback
255-
BottomSheetCallback bottomSheetCallback =
256-
new BottomSheetCallback() {
257-
@Override
258-
public void onStateChanged(@NonNull View bottomSheet, int newState) {
260+
return new BottomSheetCallback() {
261+
@Override
262+
public void onStateChanged(@NonNull View bottomSheet, int newState) {
263+
updateStateTextView(bottomSheet, text, newState);
264+
}
259265

260-
switch (newState) {
261-
case BottomSheetBehavior.STATE_DRAGGING:
262-
text.setText(R.string.cat_bottomsheet_state_dragging);
263-
break;
264-
case BottomSheetBehavior.STATE_EXPANDED:
265-
text.setText(R.string.cat_bottomsheet_state_expanded);
266-
break;
267-
case BottomSheetBehavior.STATE_COLLAPSED:
268-
text.setText(R.string.cat_bottomsheet_state_collapsed);
269-
break;
270-
case BottomSheetBehavior.STATE_HALF_EXPANDED:
271-
BottomSheetBehavior<View> bottomSheetBehavior =
272-
BottomSheetBehavior.from(bottomSheet);
273-
text.setText(
274-
getString(
275-
R.string.cat_bottomsheet_state_half_expanded,
276-
bottomSheetBehavior.getHalfExpandedRatio()));
277-
break;
278-
default:
279-
break;
280-
}
281-
}
266+
@Override
267+
public void onSlide(@NonNull View bottomSheet, float slideOffset) {}
268+
};
269+
}
282270

283-
@Override
284-
public void onSlide(@NonNull View bottomSheet, float slideOffset) {}
285-
};
286-
return bottomSheetCallback;
271+
private void updateStateTextView(@NonNull View bottomSheet, @NonNull TextView text, int state) {
272+
switch (state) {
273+
case BottomSheetBehavior.STATE_DRAGGING:
274+
text.setText(R.string.cat_bottomsheet_state_dragging);
275+
break;
276+
case BottomSheetBehavior.STATE_EXPANDED:
277+
text.setText(R.string.cat_bottomsheet_state_expanded);
278+
break;
279+
case BottomSheetBehavior.STATE_COLLAPSED:
280+
text.setText(R.string.cat_bottomsheet_state_collapsed);
281+
break;
282+
case BottomSheetBehavior.STATE_HALF_EXPANDED:
283+
BottomSheetBehavior<View> bottomSheetBehavior =
284+
BottomSheetBehavior.from(bottomSheet);
285+
text.setText(
286+
getString(
287+
R.string.cat_bottomsheet_state_half_expanded,
288+
bottomSheetBehavior.getHalfExpandedRatio()));
289+
break;
290+
default:
291+
break;
292+
}
287293
}
288294

289295
private void setupBackHandling(BottomSheetBehavior<View> behavior) {
@@ -294,25 +300,29 @@ private void setupBackHandling(BottomSheetBehavior<View> behavior) {
294300
new BottomSheetCallback() {
295301
@Override
296302
public void onStateChanged(@NonNull View bottomSheet, int newState) {
297-
switch (newState) {
298-
case BottomSheetBehavior.STATE_EXPANDED:
299-
case BottomSheetBehavior.STATE_HALF_EXPANDED:
300-
persistentBottomSheetBackCallback.setEnabled(true);
301-
break;
302-
case BottomSheetBehavior.STATE_COLLAPSED:
303-
case BottomSheetBehavior.STATE_HIDDEN:
304-
persistentBottomSheetBackCallback.setEnabled(false);
305-
break;
306-
case BottomSheetBehavior.STATE_DRAGGING:
307-
case BottomSheetBehavior.STATE_SETTLING:
308-
default:
309-
// Do nothing, only change callback enabled for "stable" states.
310-
break;
311-
}
303+
updateBackHandlingEnabled(newState);
312304
}
313305

314306
@Override
315307
public void onSlide(@NonNull View bottomSheet, float slideOffset) {}
316308
});
317309
}
310+
311+
private void updateBackHandlingEnabled(int state) {
312+
switch (state) {
313+
case BottomSheetBehavior.STATE_EXPANDED:
314+
case BottomSheetBehavior.STATE_HALF_EXPANDED:
315+
persistentBottomSheetBackCallback.setEnabled(true);
316+
break;
317+
case BottomSheetBehavior.STATE_COLLAPSED:
318+
case BottomSheetBehavior.STATE_HIDDEN:
319+
persistentBottomSheetBackCallback.setEnabled(false);
320+
break;
321+
case BottomSheetBehavior.STATE_DRAGGING:
322+
case BottomSheetBehavior.STATE_SETTLING:
323+
default:
324+
// Do nothing, only change callback enabled for "stable" states.
325+
break;
326+
}
327+
}
318328
}

0 commit comments

Comments
 (0)
Please sign in to comment.