blob: ede4ea8f436882e84f9a08595a1347b855f2125a [file] [log] [blame]
Winson Chung303e1ff2014-03-07 15:06:19 -08001/*
2 * Copyright (C) 2014 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.systemui.recents;
18
19/**
20 * Constants
21 * XXX: We are going to move almost all of these into a resource.
22 */
23public class Constants {
24 public static class DebugFlags {
25 // Enable this with any other debug flag to see more info
26 public static final boolean Verbose = false;
27
28 public static class App {
29 public static final boolean EnableTaskFiltering = false;
30 public static final boolean EnableTaskStackClipping = false;
Winson Chung47c4c692014-03-17 10:17:11 -070031 public static final boolean EnableToggleNewRecentsActivity = false;
Winson Chung04dfe0d2014-03-14 14:06:29 -070032 // This disables the bitmap and icon caches to
33 public static final boolean DisableBackgroundCache = false;
Winson Chung4d7b0922014-03-13 17:14:17 -070034
Winson Chung71243902014-03-14 17:52:47 -070035 public static final boolean TaskDataLoader = false;
Winson Chung303e1ff2014-03-07 15:06:19 -080036 public static final boolean SystemUIHandshake = false;
37 public static final boolean TimeSystemCalls = false;
Winson Chung4d7b0922014-03-13 17:14:17 -070038 public static final boolean Memory = false;
Winson Chung303e1ff2014-03-07 15:06:19 -080039 }
40
41 public static class UI {
42 public static final boolean Draw = false;
43 public static final boolean ClickEvents = false;
44 public static final boolean TouchEvents = false;
45 public static final boolean MeasureAndLayout = false;
46 public static final boolean Clipping = false;
Winson Chung71243902014-03-14 17:52:47 -070047 public static final boolean HwLayers = false;
Winson Chung303e1ff2014-03-07 15:06:19 -080048 }
49
50 public static class TaskStack {
51 public static final boolean SynchronizeViewsWithModel = false;
52 }
53
54 public static class ViewPool {
55 public static final boolean PoolCallbacks = false;
56 }
57 }
58
59 public static class Values {
60 public static class Window {
Winson Chung4d7b0922014-03-13 17:14:17 -070061 // The dark background dim is set behind the empty recents view
Winson Chung303e1ff2014-03-07 15:06:19 -080062 public static final float DarkBackgroundDim = 0.5f;
Winson Chung4d7b0922014-03-13 17:14:17 -070063 // The background dim is set behind the card stack
Winson Chung303e1ff2014-03-07 15:06:19 -080064 public static final float BackgroundDim = 0.35f;
65 }
66
67 public static class RecentsTaskLoader {
68 // XXX: This should be calculated on the first load
69 public static final int PreloadFirstTasksCount = 5;
Winson Chung4d7b0922014-03-13 17:14:17 -070070 // For debugging, this allows us to multiply the number of cards for each task
Winson Chung303e1ff2014-03-07 15:06:19 -080071 public static final int TaskEntryMultiplier = 1;
72 }
73
74 public static class TaskStackView {
75 public static class Animation {
76 public static final int TaskRemovedReshuffleDuration = 200;
77 public static final int SnapScrollBackDuration = 650;
Winson Chung303e1ff2014-03-07 15:06:19 -080078 }
79
Winson Chung47c4c692014-03-17 10:17:11 -070080 public static final int TaskStackOverscrollRange = 150;
81
Winson Chung303e1ff2014-03-07 15:06:19 -080082 // The padding will be applied to the smallest dimension, and then applied to all sides
83 public static final float StackPaddingPct = 0.15f;
84 // The overlap height relative to the task height
85 public static final float StackOverlapPct = 0.65f;
86 // The height of the peek space relative to the stack height
87 public static final float StackPeekHeightPct = 0.1f;
88 // The min scale of the last card in the peek area
89 public static final float StackPeekMinScale = 0.9f;
90 // The number of cards we see in the peek space
91 public static final int StackPeekNumCards = 3;
92 }
93
94 public static class TaskView {
95 public static class Animation {
96 public static final int TaskDataUpdatedFadeDuration = 250;
Winson Chung47c4c692014-03-17 10:17:11 -070097 public static final int TaskIconOnEnterDuration = 175;
98 public static final int TaskIconOnLeavingDuration = 75;
Winson Chung303e1ff2014-03-07 15:06:19 -080099 }
100
101 public static final boolean AnimateFrontTaskIconOnEnterRecents = true;
102 public static final boolean AnimateFrontTaskIconOnLeavingRecents = true;
Winson Chung47c4c692014-03-17 10:17:11 -0700103 public static final boolean AnimateFrontTaskIconOnEnterUseClip = false;
Winson Chung303e1ff2014-03-07 15:06:19 -0800104 public static final boolean AnimateFrontTaskIconOnLeavingUseClip = false;
105 public static final boolean DrawColoredTaskBars = false;
106 public static final boolean UseRoundedCorners = true;
107 public static final float RoundedCornerRadiusDps = 3;
108
109 public static final float TaskBarHeightDps = 54;
110 public static final float TaskIconSizeDps = 60;
111 }
112 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800113}