Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 18 | |
| 19 | import android.content.Context; |
| 20 | import android.view.MotionEvent; |
| 21 | import android.view.View; |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 22 | import android.widget.FrameLayout; |
Winson Chung | fd3385f | 2011-06-15 19:51:24 -0700 | [diff] [blame] | 23 | import android.widget.GridLayout; |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 24 | |
| 25 | /** |
| 26 | * The grid based layout used strictly for the widget/wallpaper tab of the AppsCustomize pane |
| 27 | */ |
Winson Chung | fd3385f | 2011-06-15 19:51:24 -0700 | [diff] [blame] | 28 | public class PagedViewGridLayout extends GridLayout implements Page { |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 29 | static final String TAG = "PagedViewGridLayout"; |
| 30 | |
| 31 | private int mCellCountX; |
| 32 | private int mCellCountY; |
Michael Jurka | 038f9d8 | 2011-11-03 13:50:45 -0700 | [diff] [blame] | 33 | private Runnable mOnLayoutListener; |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 34 | |
| 35 | public PagedViewGridLayout(Context context, int cellCountX, int cellCountY) { |
| 36 | super(context, null, 0); |
| 37 | mCellCountX = cellCountX; |
| 38 | mCellCountY = cellCountY; |
| 39 | } |
| 40 | |
| 41 | int getCellCountX() { |
| 42 | return mCellCountX; |
| 43 | } |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 44 | |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 45 | int getCellCountY() { |
| 46 | return mCellCountY; |
| 47 | } |
| 48 | |
Winson Chung | c6f10b9 | 2011-11-14 11:39:07 -0800 | [diff] [blame] | 49 | /** |
| 50 | * Clears all the key listeners for the individual widgets. |
| 51 | */ |
| 52 | public void resetChildrenOnKeyListeners() { |
| 53 | int childCount = getChildCount(); |
| 54 | for (int j = 0; j < childCount; ++j) { |
| 55 | getChildAt(j).setOnKeyListener(null); |
| 56 | } |
| 57 | } |
| 58 | |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 59 | @Override |
| 60 | protected void onDetachedFromWindow() { |
| 61 | super.onDetachedFromWindow(); |
| 62 | mOnLayoutListener = null; |
| 63 | } |
| 64 | |
Michael Jurka | 038f9d8 | 2011-11-03 13:50:45 -0700 | [diff] [blame] | 65 | public void setOnLayoutListener(Runnable r) { |
| 66 | mOnLayoutListener = r; |
| 67 | } |
| 68 | |
| 69 | protected void onLayout(boolean changed, int left, int top, int right, int bottom) { |
| 70 | super.onLayout(changed, left, top, right, bottom); |
| 71 | if (mOnLayoutListener != null) { |
| 72 | mOnLayoutListener.run(); |
| 73 | } |
| 74 | } |
| 75 | |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 76 | @Override |
| 77 | public boolean onTouchEvent(MotionEvent event) { |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 78 | boolean result = super.onTouchEvent(event); |
| 79 | int count = getPageChildCount(); |
| 80 | if (count > 0) { |
| 81 | // We only intercept the touch if we are tapping in empty space after the final row |
| 82 | View child = getChildOnPageAt(count - 1); |
| 83 | int bottom = child.getBottom(); |
| 84 | result = result || (event.getY() < bottom); |
| 85 | } |
| 86 | return result; |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 89 | @Override |
| 90 | public void removeAllViewsOnPage() { |
| 91 | removeAllViews(); |
Michael Jurka | 2a4b1a8 | 2011-12-07 14:00:02 -0800 | [diff] [blame] | 92 | mOnLayoutListener = null; |
Michael Jurka | 47639b9 | 2013-01-14 12:42:27 +0100 | [diff] [blame] | 93 | setLayerType(LAYER_TYPE_NONE, null); |
Winson Chung | 4e6a976 | 2011-05-09 11:56:34 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | @Override |
| 97 | public void removeViewOnPageAt(int index) { |
| 98 | removeViewAt(index); |
| 99 | } |
| 100 | |
| 101 | @Override |
| 102 | public int getPageChildCount() { |
| 103 | return getChildCount(); |
| 104 | } |
| 105 | |
| 106 | @Override |
| 107 | public View getChildOnPageAt(int i) { |
| 108 | return getChildAt(i); |
| 109 | } |
| 110 | |
| 111 | @Override |
| 112 | public int indexOfChildOnPage(View v) { |
| 113 | return indexOfChild(v); |
| 114 | } |
| 115 | |
| 116 | public static class LayoutParams extends FrameLayout.LayoutParams { |
| 117 | public LayoutParams(int width, int height) { |
| 118 | super(width, height); |
| 119 | } |
| 120 | } |
| 121 | } |