blob: c8de9df10d60678465056936ae6cf0120b7b8d8b [file] [log] [blame]
Winson Chung94804152015-05-08 13:06:44 -07001/*
2 * Copyright (C) 2015 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 */
16
17package com.android.launcher3;
18
19import android.content.Context;
20import android.graphics.Rect;
21import android.util.AttributeSet;
Winson Chung73f0b9b2015-07-08 14:13:08 -070022import android.util.Log;
Winson Chungef7f8742015-06-04 17:18:17 -070023import android.widget.LinearLayout;
Winson Chung94804152015-05-08 13:06:44 -070024
25/**
26 * A base container view, which supports resizing.
27 */
Winson Chungef7f8742015-06-04 17:18:17 -070028public abstract class BaseContainerView extends LinearLayout implements Insettable {
Winson Chung94804152015-05-08 13:06:44 -070029
Winson Chung73f0b9b2015-07-08 14:13:08 -070030 private final static String TAG = "BaseContainerView";
31
Winson Chungef7f8742015-06-04 17:18:17 -070032 // The window insets
33 private Rect mInsets = new Rect();
34 // The bounds of the search bar. Only the left, top, right are used to inset the
35 // search bar and the height is determined by the measurement of the layout
Winson Chung73f0b9b2015-07-08 14:13:08 -070036 private Rect mFixedSearchBarBounds = new Rect();
Winson Chungef7f8742015-06-04 17:18:17 -070037 // The bounds of the container
38 protected Rect mContentBounds = new Rect();
39 // The padding to apply to the container to achieve the bounds
40 protected Rect mContentPadding = new Rect();
41 // The inset to apply to the edges and between the search bar and the container
42 private int mContainerBoundsInset;
43 private boolean mHasSearchBar;
Winson Chung94804152015-05-08 13:06:44 -070044
45 public BaseContainerView(Context context) {
46 this(context, null);
47 }
48
49 public BaseContainerView(Context context, AttributeSet attrs) {
50 this(context, attrs, 0);
51 }
52
53 public BaseContainerView(Context context, AttributeSet attrs, int defStyleAttr) {
54 super(context, attrs, defStyleAttr);
Winson Chungef7f8742015-06-04 17:18:17 -070055 mContainerBoundsInset = getResources().getDimensionPixelSize(R.dimen.container_bounds_inset);
Winson Chung94804152015-05-08 13:06:44 -070056 }
57
58 @Override
59 final public void setInsets(Rect insets) {
60 mInsets.set(insets);
Winson Chungef7f8742015-06-04 17:18:17 -070061 updateBackgroundAndPaddings();
62 }
63
64 protected void setHasSearchBar() {
65 mHasSearchBar = true;
Winson Chung94804152015-05-08 13:06:44 -070066 }
67
68 /**
Winson Chungef7f8742015-06-04 17:18:17 -070069 * Sets the search bar bounds for this container view to match.
Winson Chung94804152015-05-08 13:06:44 -070070 */
Winson Chungef7f8742015-06-04 17:18:17 -070071 final public void setSearchBarBounds(Rect bounds) {
Winson Chung73f0b9b2015-07-08 14:13:08 -070072 if (LauncherAppState.isDogfoodBuild() && !isValidSearchBarBounds(bounds)) {
73 Log.e(TAG, "Invalid search bar bounds: " + bounds);
74 }
75
76 mFixedSearchBarBounds.set(bounds);
Winson Chungef7f8742015-06-04 17:18:17 -070077
Winson Chung94804152015-05-08 13:06:44 -070078 // Post the updates since they can trigger a relayout, and this call can be triggered from
79 // a layout pass itself.
80 post(new Runnable() {
81 @Override
82 public void run() {
Winson Chungef7f8742015-06-04 17:18:17 -070083 updateBackgroundAndPaddings();
Winson Chung94804152015-05-08 13:06:44 -070084 }
85 });
86 }
87
88 /**
Winson Chungef7f8742015-06-04 17:18:17 -070089 * Update the backgrounds and padding in response to a change in the bounds or insets.
Winson Chung94804152015-05-08 13:06:44 -070090 */
Winson Chungef7f8742015-06-04 17:18:17 -070091 protected void updateBackgroundAndPaddings() {
92 Rect padding;
Winson Chung73f0b9b2015-07-08 14:13:08 -070093 Rect searchBarBounds = new Rect(mFixedSearchBarBounds);
94 if (!isValidSearchBarBounds(mFixedSearchBarBounds)) {
95 // Use the default bounds
Winson Chungef7f8742015-06-04 17:18:17 -070096 padding = new Rect(mInsets.left + mContainerBoundsInset,
97 (mHasSearchBar ? 0 : (mInsets.top + mContainerBoundsInset)),
98 mInsets.right + mContainerBoundsInset,
99 mInsets.bottom + mContainerBoundsInset);
100
101 // Special case -- we have the search bar, but no specific bounds, so just give it
102 // the inset bounds without a height.
103 searchBarBounds.set(mInsets.left + mContainerBoundsInset,
104 mInsets.top + mContainerBoundsInset,
105 getMeasuredWidth() - (mInsets.right + mContainerBoundsInset), 0);
106 } else {
107 // Use the search bounds, if there is a search bar, the bounds will contain
108 // the offsets for the insets so we can ignore that
Winson Chung73f0b9b2015-07-08 14:13:08 -0700109 padding = new Rect(mFixedSearchBarBounds.left,
Winson Chungef7f8742015-06-04 17:18:17 -0700110 (mHasSearchBar ? 0 : (mInsets.top + mContainerBoundsInset)),
Winson Chung73f0b9b2015-07-08 14:13:08 -0700111 getMeasuredWidth() - mFixedSearchBarBounds.right,
Winson Chungef7f8742015-06-04 17:18:17 -0700112 mInsets.bottom + mContainerBoundsInset);
113 }
Winson Chung73f0b9b2015-07-08 14:13:08 -0700114 if (!padding.equals(mContentPadding) || !searchBarBounds.equals(mFixedSearchBarBounds)) {
Winson Chungef7f8742015-06-04 17:18:17 -0700115 mContentPadding.set(padding);
116 mContentBounds.set(padding.left, padding.top,
117 getMeasuredWidth() - padding.right,
118 getMeasuredHeight() - padding.bottom);
Winson Chung73f0b9b2015-07-08 14:13:08 -0700119 mFixedSearchBarBounds.set(searchBarBounds);
120 onUpdateBackgroundAndPaddings(mFixedSearchBarBounds, padding);
Winson Chungef7f8742015-06-04 17:18:17 -0700121 }
Winson Chung94804152015-05-08 13:06:44 -0700122 }
123
124 /**
Winson Chungef7f8742015-06-04 17:18:17 -0700125 * To be implemented by container views to update themselves when the bounds changes.
Winson Chung94804152015-05-08 13:06:44 -0700126 */
Winson Chungef7f8742015-06-04 17:18:17 -0700127 protected abstract void onUpdateBackgroundAndPaddings(Rect searchBarBounds, Rect padding);
Winson Chung73f0b9b2015-07-08 14:13:08 -0700128
129 /**
130 * Returns whether the search bar bounds we got are considered valid.
131 */
132 private boolean isValidSearchBarBounds(Rect searchBarBounds) {
133 return !searchBarBounds.isEmpty() &&
134 searchBarBounds.right <= getMeasuredWidth() &&
135 searchBarBounds.bottom <= getMeasuredHeight();
136 }
Winson Chung94804152015-05-08 13:06:44 -0700137}