blob: 91b79f99c358ed9180baa4e6ae21e814ae1f63db [file] [log] [blame]
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001/*
2 * Copyright (C) 2017 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 * http://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 */
Steven Ng2f5648a2021-02-08 17:18:25 +000016package com.android.launcher3.widget.picker;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070017
Sunny Goyalf3ac7032020-03-13 13:01:33 -070018import static com.android.launcher3.LauncherAnimUtils.VIEW_TRANSLATE_Y;
vadimt9f48a8e2019-12-11 11:52:37 -080019import static com.android.launcher3.testing.TestProtocol.NORMAL_STATE_ORDINAL;
20
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070021import android.animation.Animator;
22import android.animation.AnimatorListenerAdapter;
23import android.animation.PropertyValuesHolder;
24import android.content.Context;
Steven Ng391404f2021-02-17 15:58:23 +000025import android.content.pm.LauncherApps;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070026import android.graphics.Rect;
Steven Ng391404f2021-02-17 15:58:23 +000027import android.os.Process;
28import android.os.UserHandle;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070029import android.util.AttributeSet;
Sunny Goyalde753212018-05-15 13:55:57 -070030import android.util.Pair;
Steven Ng391404f2021-02-17 15:58:23 +000031import android.util.SparseArray;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070032import android.view.LayoutInflater;
33import android.view.MotionEvent;
Sunny Goyalde753212018-05-15 13:55:57 -070034import android.view.View;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070035import android.view.animation.AnimationUtils;
Sunny Goyalf3ac7032020-03-13 13:01:33 -070036import android.view.animation.Interpolator;
Steven Ng167f81b2021-02-23 10:48:46 +000037import android.widget.EditText;
38import android.widget.TextView;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070039
Steven Ng391404f2021-02-17 15:58:23 +000040import androidx.annotation.Nullable;
Tony Wickham9791bd12019-04-05 13:52:35 -070041import androidx.annotation.VisibleForTesting;
Steven Ng391404f2021-02-17 15:58:23 +000042import androidx.recyclerview.widget.RecyclerView;
Tony Wickham9791bd12019-04-05 13:52:35 -070043
Steven Nge8d92342021-02-19 21:29:18 +000044import com.android.launcher3.DeviceProfile;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070045import com.android.launcher3.Insettable;
46import com.android.launcher3.Launcher;
47import com.android.launcher3.LauncherAppState;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070048import com.android.launcher3.R;
Sunny Goyalf3ac7032020-03-13 13:01:33 -070049import com.android.launcher3.anim.PendingAnimation;
vadimt9f48a8e2019-12-11 11:52:37 -080050import com.android.launcher3.compat.AccessibilityManagerCompat;
Sunny Goyal3661bfa2018-03-01 16:29:15 -080051import com.android.launcher3.views.RecyclerViewFastScroller;
52import com.android.launcher3.views.TopRoundedCornerView;
Steven Ng2f5648a2021-02-08 17:18:25 +000053import com.android.launcher3.widget.BaseWidgetSheet;
Yogisha Dixit741fae92021-02-22 14:03:44 +000054import com.android.launcher3.widget.LauncherAppWidgetHost.ProviderChangedListener;
Steven Ng391404f2021-02-17 15:58:23 +000055import com.android.launcher3.widget.model.WidgetsListBaseEntry;
56import com.android.launcher3.workprofile.PersonalWorkPagedView;
57import com.android.launcher3.workprofile.PersonalWorkSlidingTabStrip.OnActivePageChangedListener;
58
59import java.util.List;
60import java.util.function.Predicate;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070061
62/**
63 * Popup for showing the full list of available widgets
64 */
65public class WidgetsFullSheet extends BaseWidgetSheet
Steven Ng167f81b2021-02-23 10:48:46 +000066 implements Insettable, ProviderChangedListener, OnActivePageChangedListener,
67 WidgetsRecyclerView.HeaderViewDimensionsProvider {
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070068
69 private static final long DEFAULT_OPEN_DURATION = 267;
70 private static final long FADE_IN_DURATION = 150;
71 private static final float VERTICAL_START_POSITION = 0.3f;
72
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070073 private final Rect mInsets = new Rect();
Steven Ng391404f2021-02-17 15:58:23 +000074 private final boolean mHasWorkProfile;
75 private final SparseArray<AdapterHolder> mAdapters = new SparseArray();
76 private final UserHandle mCurrentUser = Process.myUserHandle();
77 private final Predicate<WidgetsListBaseEntry> mPrimaryWidgetsFilter = entry ->
78 mCurrentUser.equals(entry.mPkgItem.user);
79 private final Predicate<WidgetsListBaseEntry> mWorkWidgetsFilter =
80 mPrimaryWidgetsFilter.negate();
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070081
Steven Ng391404f2021-02-17 15:58:23 +000082 @Nullable private PersonalWorkPagedView mViewPager;
Steven Ng167f81b2021-02-23 10:48:46 +000083 private int mInitialTabsHeight = 0;
84 private View mTabsView;
85 private SearchAndRecommendationViewHolder mSearchAndRecommendationViewHolder;
86 private SearchAndRecommendationsScrollController mSearchAndRecommendationsScrollController;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070087
88 public WidgetsFullSheet(Context context, AttributeSet attrs, int defStyleAttr) {
89 super(context, attrs, defStyleAttr);
Steven Ng391404f2021-02-17 15:58:23 +000090 mHasWorkProfile = context.getSystemService(LauncherApps.class).getProfiles().size() > 1;
91 mAdapters.put(AdapterHolder.PRIMARY, new AdapterHolder(AdapterHolder.PRIMARY));
92 mAdapters.put(AdapterHolder.WORK, new AdapterHolder(AdapterHolder.WORK));
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070093 }
94
95 public WidgetsFullSheet(Context context, AttributeSet attrs) {
96 this(context, attrs, 0);
97 }
98
99 @Override
100 protected void onFinishInflate() {
101 super.onFinishInflate();
102 mContent = findViewById(R.id.container);
Sunny Goyal016d7e92018-03-09 11:09:20 -0800103 TopRoundedCornerView springLayout = (TopRoundedCornerView) mContent;
Steven Ng391404f2021-02-17 15:58:23 +0000104
105 LayoutInflater layoutInflater = LayoutInflater.from(getContext());
106 int contentLayoutRes = mHasWorkProfile ? R.layout.widgets_full_sheet_paged_view
107 : R.layout.widgets_full_sheet_recyclerview;
Steven Ng167f81b2021-02-23 10:48:46 +0000108 layoutInflater.inflate(contentLayoutRes, springLayout, true);
Steven Ng391404f2021-02-17 15:58:23 +0000109
Steven Ng167f81b2021-02-23 10:48:46 +0000110 RecyclerViewFastScroller fastScroller = findViewById(R.id.fast_scroller);
Steven Ng391404f2021-02-17 15:58:23 +0000111 if (mHasWorkProfile) {
112 mViewPager = findViewById(R.id.widgets_view_pager);
113 // Temporarily disable swipe gesture until widgets list horizontal scrollviews per
114 // app are replaced by gird views.
115 mViewPager.setSwipeGestureEnabled(false);
116 mViewPager.initParentViews(this);
117 mViewPager.getPageIndicator().setOnActivePageChangedListener(this);
118 mViewPager.getPageIndicator().setActiveMarker(AdapterHolder.PRIMARY);
Steven Ng167f81b2021-02-23 10:48:46 +0000119 mTabsView = findViewById(R.id.tabs);
Steven Ng391404f2021-02-17 15:58:23 +0000120 findViewById(R.id.tab_personal)
121 .setOnClickListener((View view) -> mViewPager.snapToPage(0));
122 findViewById(R.id.tab_work)
123 .setOnClickListener((View view) -> mViewPager.snapToPage(1));
Steven Ng167f81b2021-02-23 10:48:46 +0000124 fastScroller.setIsRecyclerViewFirstChildInParent(false);
Steven Ng391404f2021-02-17 15:58:23 +0000125 springLayout.addSpringView(R.id.primary_widgets_list_view);
126 springLayout.addSpringView(R.id.work_widgets_list_view);
127 } else {
128 mViewPager = null;
129 springLayout.addSpringView(R.id.primary_widgets_list_view);
130 }
131
Steven Ng167f81b2021-02-23 10:48:46 +0000132 layoutInflater.inflate(R.layout.widgets_full_sheet_search_and_recommendations, springLayout,
133 true);
134 springLayout.addSpringView(R.id.search_and_recommendations_container);
135
136 mSearchAndRecommendationViewHolder = new SearchAndRecommendationViewHolder(
137 findViewById(R.id.search_and_recommendations_container));
138 mSearchAndRecommendationsScrollController = new SearchAndRecommendationsScrollController(
139 mHasWorkProfile,
140 mSearchAndRecommendationViewHolder,
141 findViewById(R.id.primary_widgets_list_view),
142 mHasWorkProfile ? findViewById(R.id.work_widgets_list_view) : null,
143 mTabsView,
144 mViewPager);
145 fastScroller.setOnFastScrollChangeListener(mSearchAndRecommendationsScrollController);
146
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700147 onWidgetsBound();
148 }
149
Steven Ng391404f2021-02-17 15:58:23 +0000150 @Override
151 public void onActivePageChanged(int currentActivePage) {
152 mAdapters.get(currentActivePage).mWidgetsRecyclerView.bindFastScrollbar();
Steven Ng167f81b2021-02-23 10:48:46 +0000153
154 reset();
155 }
156
157 private void reset() {
158 mAdapters.get(AdapterHolder.PRIMARY).mWidgetsRecyclerView.scrollToTop();
159 if (mHasWorkProfile) {
160 mAdapters.get(AdapterHolder.WORK).mWidgetsRecyclerView.scrollToTop();
161 }
Steven Ng391404f2021-02-17 15:58:23 +0000162 }
163
Sunny Goyal8b37c572020-03-31 12:12:14 -0700164 @VisibleForTesting
165 public WidgetsRecyclerView getRecyclerView() {
Steven Ng391404f2021-02-17 15:58:23 +0000166 if (!mHasWorkProfile || mViewPager.getCurrentPage() == AdapterHolder.PRIMARY) {
167 return mAdapters.get(AdapterHolder.PRIMARY).mWidgetsRecyclerView;
168 }
169 return mAdapters.get(AdapterHolder.WORK).mWidgetsRecyclerView;
Sunny Goyal8b37c572020-03-31 12:12:14 -0700170 }
171
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700172 @Override
Sunny Goyalde753212018-05-15 13:55:57 -0700173 protected Pair<View, String> getAccessibilityTarget() {
Steven Ng391404f2021-02-17 15:58:23 +0000174 return Pair.create(getRecyclerView(), getContext().getString(
Sunny Goyalde753212018-05-15 13:55:57 -0700175 mIsOpen ? R.string.widgets_list : R.string.widgets_list_closed));
176 }
177
178 @Override
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700179 protected void onAttachedToWindow() {
180 super.onAttachedToWindow();
181 mLauncher.getAppWidgetHost().addProviderChangeListener(this);
182 notifyWidgetProvidersChanged();
183 }
184
185 @Override
186 protected void onDetachedFromWindow() {
187 super.onDetachedFromWindow();
188 mLauncher.getAppWidgetHost().removeProviderChangeListener(this);
189 }
190
191 @Override
192 public void setInsets(Rect insets) {
193 mInsets.set(insets);
194
Steven Ng391404f2021-02-17 15:58:23 +0000195 setBottomPadding(mAdapters.get(AdapterHolder.PRIMARY).mWidgetsRecyclerView, insets.bottom);
196 if (mHasWorkProfile) {
197 setBottomPadding(mAdapters.get(AdapterHolder.WORK).mWidgetsRecyclerView, insets.bottom);
198 }
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700199 if (insets.bottom > 0) {
200 setupNavBarColor();
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800201 } else {
202 clearNavBarColor();
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700203 }
Sunny Goyal3661bfa2018-03-01 16:29:15 -0800204
205 ((TopRoundedCornerView) mContent).setNavBarScrimHeight(mInsets.bottom);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700206 requestLayout();
207 }
208
Steven Ng391404f2021-02-17 15:58:23 +0000209 private void setBottomPadding(RecyclerView recyclerView, int bottomPadding) {
210 recyclerView.setPadding(
211 recyclerView.getPaddingLeft(),
212 recyclerView.getPaddingTop(),
213 recyclerView.getPaddingRight(),
214 bottomPadding);
215 }
216
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700217 @Override
218 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Steven Nge8d92342021-02-19 21:29:18 +0000219 DeviceProfile deviceProfile = mLauncher.getDeviceProfile();
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700220 int widthUsed;
221 if (mInsets.bottom > 0) {
Sunny Goyal786940a2020-06-02 02:31:31 -0700222 widthUsed = mInsets.left + mInsets.right;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700223 } else {
Steven Nge8d92342021-02-19 21:29:18 +0000224 Rect padding = deviceProfile.workspacePadding;
Sunny Goyal07b69292018-01-08 14:19:34 -0800225 widthUsed = Math.max(padding.left + padding.right,
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700226 2 * (mInsets.left + mInsets.right));
227 }
228
Steven Nge8d92342021-02-19 21:29:18 +0000229 int heightUsed = mInsets.top + deviceProfile.edgeMarginPx;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700230 measureChildWithMargins(mContent, widthMeasureSpec,
231 widthUsed, heightMeasureSpec, heightUsed);
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800232 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec),
233 MeasureSpec.getSize(heightMeasureSpec));
Steven Nge8d92342021-02-19 21:29:18 +0000234
Steven Ng11773f42021-02-25 22:54:37 +0000235 int paddingPx = 2 * getResources().getDimensionPixelOffset(
236 R.dimen.widget_cell_horizontal_padding);
237 int maxSpansPerRow = getMeasuredWidth() / (deviceProfile.cellWidthPx + paddingPx);
Steven Nge8d92342021-02-19 21:29:18 +0000238 mAdapters.get(AdapterHolder.PRIMARY).mWidgetsListAdapter.setMaxHorizontalSpansPerRow(
239 maxSpansPerRow);
240 if (mHasWorkProfile) {
241 mAdapters.get(AdapterHolder.WORK).mWidgetsListAdapter.setMaxHorizontalSpansPerRow(
242 maxSpansPerRow);
243 }
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700244 }
245
246 @Override
247 protected void onLayout(boolean changed, int l, int t, int r, int b) {
248 int width = r - l;
249 int height = b - t;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700250
251 // Content is laid out as center bottom aligned
252 int contentWidth = mContent.getMeasuredWidth();
Sunny Goyal786940a2020-06-02 02:31:31 -0700253 int contentLeft = (width - contentWidth - mInsets.left - mInsets.right) / 2 + mInsets.left;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700254 mContent.layout(contentLeft, height - mContent.getMeasuredHeight(),
255 contentLeft + contentWidth, height);
256
257 setTranslationShift(mTranslationShift);
Steven Ng167f81b2021-02-23 10:48:46 +0000258
259 if (mInitialTabsHeight == 0 && mTabsView != null) {
260 mInitialTabsHeight = mTabsView.getMeasuredHeight();
261 }
262
263 mSearchAndRecommendationsScrollController.updateMarginAndPadding();
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700264 }
265
266 @Override
267 public void notifyWidgetProvidersChanged() {
268 mLauncher.refreshAndBindWidgetsForPackageUser(null);
269 }
270
271 @Override
Sunny Goyal202ae0b2019-02-04 16:26:42 -0800272 public void onWidgetsBound() {
Steven Ng391404f2021-02-17 15:58:23 +0000273 List<WidgetsListBaseEntry> allWidgets = mLauncher.getPopupDataProvider().getAllWidgets();
274
275 AdapterHolder primaryUserAdapterHolder = mAdapters.get(AdapterHolder.PRIMARY);
276 primaryUserAdapterHolder.setup(findViewById(R.id.primary_widgets_list_view));
277 primaryUserAdapterHolder.mWidgetsListAdapter.setWidgets(allWidgets);
278 if (mHasWorkProfile) {
279 AdapterHolder workUserAdapterHolder = mAdapters.get(AdapterHolder.WORK);
280 workUserAdapterHolder.setup(findViewById(R.id.work_widgets_list_view));
281 workUserAdapterHolder.mWidgetsListAdapter.setWidgets(allWidgets);
282 onActivePageChanged(mViewPager.getCurrentPage());
283 }
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700284 }
285
286 private void open(boolean animate) {
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700287 if (animate) {
Sunny Goyaldb6cdb02018-07-13 11:03:04 -0700288 if (getPopupContainer().getInsets().bottom > 0) {
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700289 mContent.setAlpha(0);
290 setTranslationShift(VERTICAL_START_POSITION);
291 }
292 mOpenCloseAnimator.setValues(
293 PropertyValuesHolder.ofFloat(TRANSLATION_SHIFT, TRANSLATION_SHIFT_OPENED));
294 mOpenCloseAnimator
295 .setDuration(DEFAULT_OPEN_DURATION)
296 .setInterpolator(AnimationUtils.loadInterpolator(
297 getContext(), android.R.interpolator.linear_out_slow_in));
298 mOpenCloseAnimator.addListener(new AnimatorListenerAdapter() {
299 @Override
300 public void onAnimationEnd(Animator animation) {
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700301 mOpenCloseAnimator.removeListener(this);
302 }
303 });
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800304 post(() -> {
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800305 mOpenCloseAnimator.start();
306 mContent.animate().alpha(1).setDuration(FADE_IN_DURATION);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700307 });
308 } else {
309 setTranslationShift(TRANSLATION_SHIFT_OPENED);
Sunny Goyalde753212018-05-15 13:55:57 -0700310 post(this::announceAccessibilityChanges);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700311 }
312 }
313
314 @Override
315 protected void handleClose(boolean animate) {
316 handleClose(animate, DEFAULT_OPEN_DURATION);
317 }
318
319 @Override
320 protected boolean isOfType(int type) {
321 return (type & TYPE_WIDGETS_FULL_SHEET) != 0;
322 }
323
324 @Override
325 public boolean onControllerInterceptTouchEvent(MotionEvent ev) {
326 // Disable swipe down when recycler view is scrolling
327 if (ev.getAction() == MotionEvent.ACTION_DOWN) {
328 mNoIntercept = false;
Steven Ng391404f2021-02-17 15:58:23 +0000329 RecyclerViewFastScroller scroller = getRecyclerView().getScrollbar();
Steven Ng2f5648a2021-02-08 17:18:25 +0000330 if (scroller.getThumbOffsetY() >= 0
331 && getPopupContainer().isEventOverView(scroller, ev)) {
Sunny Goyal3661bfa2018-03-01 16:29:15 -0800332 mNoIntercept = true;
Sunny Goyaldb6cdb02018-07-13 11:03:04 -0700333 } else if (getPopupContainer().isEventOverView(mContent, ev)) {
Steven Ng391404f2021-02-17 15:58:23 +0000334 mNoIntercept = !getRecyclerView().shouldContainerScroll(ev, getPopupContainer());
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700335 }
336 }
337 return super.onControllerInterceptTouchEvent(ev);
338 }
339
Steven Ng2f5648a2021-02-08 17:18:25 +0000340 /** Shows the {@link WidgetsFullSheet} on the launcher. */
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700341 public static WidgetsFullSheet show(Launcher launcher, boolean animate) {
342 WidgetsFullSheet sheet = (WidgetsFullSheet) launcher.getLayoutInflater()
343 .inflate(R.layout.widgets_full_sheet, launcher.getDragLayer(), false);
Sunny Goyal1642f712018-09-18 11:40:35 -0700344 sheet.attachToContainer();
Sunny Goyalde753212018-05-15 13:55:57 -0700345 sheet.mIsOpen = true;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700346 sheet.open(animate);
347 return sheet;
348 }
Sunny Goyalaeb16432017-10-16 11:46:41 -0700349
Steven Ng2f5648a2021-02-08 17:18:25 +0000350 /** Gets the {@link WidgetsRecyclerView} which shows all widgets in {@link WidgetsFullSheet}. */
Vadim Tryshev2ce6a132018-06-18 19:14:44 -0700351 @VisibleForTesting
352 public static WidgetsRecyclerView getWidgetsView(Launcher launcher) {
Steven Ng391404f2021-02-17 15:58:23 +0000353 return launcher.findViewById(R.id.primary_widgets_list_view);
Vadim Tryshev2ce6a132018-06-18 19:14:44 -0700354 }
355
Sunny Goyalaeb16432017-10-16 11:46:41 -0700356 @Override
Sunny Goyalf3ac7032020-03-13 13:01:33 -0700357 public void addHintCloseAnim(
358 float distanceToMove, Interpolator interpolator, PendingAnimation target) {
Steven Ng391404f2021-02-17 15:58:23 +0000359 target.setFloat(getRecyclerView(), VIEW_TRANSLATE_Y, -distanceToMove, interpolator);
360 target.setViewAlpha(getRecyclerView(), 0.5f, interpolator);
Tony Wickham9791bd12019-04-05 13:52:35 -0700361 }
vadimt9f48a8e2019-12-11 11:52:37 -0800362
363 @Override
364 protected void onCloseComplete() {
365 super.onCloseComplete();
366 AccessibilityManagerCompat.sendStateEventToTest(getContext(), NORMAL_STATE_ORDINAL);
367 }
Steven Ng391404f2021-02-17 15:58:23 +0000368
Steven Ng167f81b2021-02-23 10:48:46 +0000369 @Override
370 public int getHeaderViewHeight() {
371 // No need to check work profile here because mInitialTabHeight is always 0 if there is no
372 // work profile.
373 return mInitialTabsHeight
374 + mSearchAndRecommendationViewHolder.mContainer.getMeasuredHeight();
375 }
376
Steven Ng391404f2021-02-17 15:58:23 +0000377 /** A holder class for holding adapters & their corresponding recycler view. */
378 private final class AdapterHolder {
379 static final int PRIMARY = 0;
380 static final int WORK = 1;
381
382 private final int mAdapterType;
383 private final WidgetsListAdapter mWidgetsListAdapter;
384
385 private WidgetsRecyclerView mWidgetsRecyclerView;
386
387 AdapterHolder(int adapterType) {
388 mAdapterType = adapterType;
389
390 Context context = getContext();
391 LauncherAppState apps = LauncherAppState.getInstance(context);
392 mWidgetsListAdapter = new WidgetsListAdapter(
393 context,
394 LayoutInflater.from(context),
395 apps.getWidgetCache(),
396 apps.getIconCache(),
397 /* iconClickListener= */ WidgetsFullSheet.this,
398 /* iconLongClickListener= */ WidgetsFullSheet.this);
399 mWidgetsListAdapter.setFilter(
400 mAdapterType == PRIMARY ? mPrimaryWidgetsFilter : mWorkWidgetsFilter);
401 }
402
403 void setup(WidgetsRecyclerView recyclerView) {
404 mWidgetsRecyclerView = recyclerView;
405 mWidgetsRecyclerView.setAdapter(mWidgetsListAdapter);
Steven Ng167f81b2021-02-23 10:48:46 +0000406 mWidgetsRecyclerView.setHeaderViewDimensionsProvider(WidgetsFullSheet.this);
Steven Ng391404f2021-02-17 15:58:23 +0000407 mWidgetsRecyclerView.setEdgeEffectFactory(
408 ((TopRoundedCornerView) mContent).createEdgeEffectFactory());
409 mWidgetsListAdapter.setApplyBitmapDeferred(false, mWidgetsRecyclerView);
410 }
411 }
Steven Ng167f81b2021-02-23 10:48:46 +0000412
413 final class SearchAndRecommendationViewHolder {
414 final View mContainer;
415 final View mCollapseHandle;
416 final EditText mSearchBar;
417 final TextView mHeaderTitle;
418
419 SearchAndRecommendationViewHolder(View searchAndRecommendationContainer) {
420 mContainer = searchAndRecommendationContainer;
421 mCollapseHandle = mContainer.findViewById(R.id.collapse_handle);
422 mSearchBar = mContainer.findViewById(R.id.widgets_search_bar);
423 mHeaderTitle = mContainer.findViewById(R.id.title);
424 }
425 }
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700426}