|
| 1 | +/* |
| 2 | + * Copyright 2023 The Android Open Source Project |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package io.material.catalog.carousel; |
| 18 | + |
| 19 | +import io.material.catalog.R; |
| 20 | + |
| 21 | +import android.os.Bundle; |
| 22 | +import androidx.recyclerview.widget.RecyclerView; |
| 23 | +import androidx.recyclerview.widget.SnapHelper; |
| 24 | +import android.view.LayoutInflater; |
| 25 | +import android.view.View; |
| 26 | +import android.view.View.OnClickListener; |
| 27 | +import android.view.ViewGroup; |
| 28 | +import android.widget.AutoCompleteTextView; |
| 29 | +import android.widget.Button; |
| 30 | +import androidx.annotation.NonNull; |
| 31 | +import androidx.annotation.Nullable; |
| 32 | +import com.google.android.material.bottomsheet.BottomSheetDialog; |
| 33 | +import com.google.android.material.carousel.CarouselLayoutManager; |
| 34 | +import com.google.android.material.carousel.CarouselSnapHelper; |
| 35 | +import com.google.android.material.carousel.FullScreenCarouselStrategy; |
| 36 | +import com.google.android.material.divider.MaterialDividerItemDecoration; |
| 37 | +import com.google.android.material.materialswitch.MaterialSwitch; |
| 38 | +import com.google.android.material.slider.Slider; |
| 39 | +import com.google.android.material.slider.Slider.OnSliderTouchListener; |
| 40 | +import io.material.catalog.feature.DemoFragment; |
| 41 | + |
| 42 | +/** A fragment that displays the fullscreen variant of the Carousel. */ |
| 43 | +public class FullScreenStrategyDemoFragment extends DemoFragment { |
| 44 | + |
| 45 | + private MaterialDividerItemDecoration horizontalDivider; |
| 46 | + private BottomSheetDialog bottomSheetDialog; |
| 47 | + |
| 48 | + @NonNull |
| 49 | + @Override |
| 50 | + public View onCreateDemoView( |
| 51 | + @NonNull LayoutInflater layoutInflater, |
| 52 | + @Nullable ViewGroup viewGroup, |
| 53 | + @Nullable Bundle bundle) { |
| 54 | + return layoutInflater.inflate( |
| 55 | + R.layout.cat_carousel_full_screen_fragment, viewGroup, false /* attachToRoot */); |
| 56 | + } |
| 57 | + |
| 58 | + @Override |
| 59 | + @SuppressWarnings("RestrictTo") |
| 60 | + public void onViewCreated(@NonNull View view, @Nullable Bundle bundle) { |
| 61 | + super.onViewCreated(view, bundle); |
| 62 | + |
| 63 | + bottomSheetDialog = new BottomSheetDialog(view.getContext()); |
| 64 | + bottomSheetDialog.setContentView(R.layout.cat_carousel_bottom_sheet_contents); |
| 65 | + // Opt in to perform swipe to dismiss animation when dismissing bottom sheet dialog. |
| 66 | + bottomSheetDialog.setDismissWithAnimation(true); |
| 67 | + |
| 68 | + horizontalDivider = |
| 69 | + new MaterialDividerItemDecoration( |
| 70 | + requireContext(), MaterialDividerItemDecoration.HORIZONTAL); |
| 71 | + |
| 72 | + Button showBottomSheetButton = view.findViewById(R.id.show_bottomsheet_button); |
| 73 | + showBottomSheetButton.setOnClickListener(new OnClickListener() { |
| 74 | + @Override |
| 75 | + public void onClick(View v) { |
| 76 | + bottomSheetDialog.show(); |
| 77 | + } |
| 78 | + }); |
| 79 | + |
| 80 | + MaterialSwitch debugSwitch = bottomSheetDialog.findViewById(R.id.debug_switch); |
| 81 | + MaterialSwitch drawDividers = bottomSheetDialog.findViewById(R.id.draw_dividers_switch); |
| 82 | + MaterialSwitch enableFlingSwitch = bottomSheetDialog.findViewById(R.id.enable_fling_switch); |
| 83 | + AutoCompleteTextView itemCountDropdown = |
| 84 | + bottomSheetDialog.findViewById(R.id.item_count_dropdown); |
| 85 | + Slider positionSlider = bottomSheetDialog.findViewById(R.id.position_slider); |
| 86 | + |
| 87 | + // A vertical fullscreen carousel |
| 88 | + RecyclerView fullscreenRecyclerView = |
| 89 | + view.findViewById(R.id.fullscreen_carousel_recycler_view); |
| 90 | + CarouselLayoutManager carouselLayoutManager = |
| 91 | + new CarouselLayoutManager(new FullScreenCarouselStrategy(), |
| 92 | + RecyclerView.VERTICAL); |
| 93 | + carouselLayoutManager.setDebuggingEnabled( |
| 94 | + fullscreenRecyclerView, debugSwitch.isChecked()); |
| 95 | + fullscreenRecyclerView.setLayoutManager(carouselLayoutManager); |
| 96 | + fullscreenRecyclerView.setNestedScrollingEnabled(false); |
| 97 | + |
| 98 | + debugSwitch.setOnCheckedChangeListener( |
| 99 | + (buttonView, isChecked) -> { |
| 100 | + carouselLayoutManager.setOrientation(CarouselLayoutManager.VERTICAL); |
| 101 | + fullscreenRecyclerView.setBackgroundResource( |
| 102 | + isChecked ? R.drawable.dashed_outline_rectangle : 0); |
| 103 | + carouselLayoutManager.setDebuggingEnabled( |
| 104 | + fullscreenRecyclerView, isChecked); |
| 105 | + }); |
| 106 | + |
| 107 | + drawDividers.setOnCheckedChangeListener( |
| 108 | + (buttonView, isChecked) -> { |
| 109 | + if (isChecked) { |
| 110 | + fullscreenRecyclerView.addItemDecoration(horizontalDivider); |
| 111 | + } else { |
| 112 | + fullscreenRecyclerView.removeItemDecoration(horizontalDivider); |
| 113 | + } |
| 114 | + }); |
| 115 | + |
| 116 | + CarouselAdapter adapter = |
| 117 | + new CarouselAdapter( |
| 118 | + (item, position) -> fullscreenRecyclerView.scrollToPosition(position), |
| 119 | + R.layout.cat_carousel_item_vertical); |
| 120 | + |
| 121 | + SnapHelper flingDisabledSnapHelper = new CarouselSnapHelper(); |
| 122 | + SnapHelper flingEnabledSnapHelper = new CarouselSnapHelper(false); |
| 123 | + |
| 124 | + flingDisabledSnapHelper.attachToRecyclerView(fullscreenRecyclerView); |
| 125 | + |
| 126 | + enableFlingSwitch.setOnCheckedChangeListener( |
| 127 | + (buttonView, isChecked) -> { |
| 128 | + if (isChecked) { |
| 129 | + flingDisabledSnapHelper.attachToRecyclerView(null); |
| 130 | + flingEnabledSnapHelper.attachToRecyclerView(fullscreenRecyclerView); |
| 131 | + } else { |
| 132 | + flingEnabledSnapHelper.attachToRecyclerView(null); |
| 133 | + flingDisabledSnapHelper.attachToRecyclerView(fullscreenRecyclerView); |
| 134 | + } |
| 135 | + }); |
| 136 | + |
| 137 | + itemCountDropdown.setOnItemClickListener( |
| 138 | + (parent, view1, position, id) -> |
| 139 | + adapter.submitList( |
| 140 | + CarouselData.createItems().subList(0, position), |
| 141 | + updateSliderRange(positionSlider, adapter))); |
| 142 | + |
| 143 | + positionSlider.addOnSliderTouchListener( |
| 144 | + new OnSliderTouchListener() { |
| 145 | + @Override |
| 146 | + public void onStartTrackingTouch(@NonNull Slider slider) {} |
| 147 | + |
| 148 | + @Override |
| 149 | + public void onStopTrackingTouch(@NonNull Slider slider) { |
| 150 | + fullscreenRecyclerView.smoothScrollToPosition((int) slider.getValue() - 1); |
| 151 | + } |
| 152 | + }); |
| 153 | + |
| 154 | + fullscreenRecyclerView.setAdapter(adapter); |
| 155 | + adapter.submitList(CarouselData.createItems(), updateSliderRange(positionSlider, adapter)); |
| 156 | + } |
| 157 | + |
| 158 | + private static Runnable updateSliderRange(Slider slider, CarouselAdapter adapter) { |
| 159 | + return () -> { |
| 160 | + if (adapter.getItemCount() <= 1) { |
| 161 | + slider.setEnabled(false); |
| 162 | + return; |
| 163 | + } |
| 164 | + |
| 165 | + slider.setValueFrom(1); |
| 166 | + slider.setValue(1); |
| 167 | + slider.setValueTo(adapter.getItemCount()); |
| 168 | + slider.setEnabled(true); |
| 169 | + }; |
| 170 | + } |
| 171 | +} |
0 commit comments