blob: 59a591ab79dead5dee08285b228819edc82b00d2 [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 Chung7048fea2014-03-18 12:21:24 -070035 public static final boolean RecentsComponent = false;
Winson Chung71243902014-03-14 17:52:47 -070036 public static final boolean TaskDataLoader = false;
Winson Chung303e1ff2014-03-07 15:06:19 -080037 public static final boolean SystemUIHandshake = false;
38 public static final boolean TimeSystemCalls = false;
Winson Chung4d7b0922014-03-13 17:14:17 -070039 public static final boolean Memory = false;
Winson Chung303e1ff2014-03-07 15:06:19 -080040 }
41
42 public static class UI {
43 public static final boolean Draw = false;
44 public static final boolean ClickEvents = false;
45 public static final boolean TouchEvents = false;
46 public static final boolean MeasureAndLayout = false;
47 public static final boolean Clipping = false;
Winson Chung71243902014-03-14 17:52:47 -070048 public static final boolean HwLayers = false;
Winson Chung303e1ff2014-03-07 15:06:19 -080049 }
50
51 public static class TaskStack {
52 public static final boolean SynchronizeViewsWithModel = false;
53 }
54
55 public static class ViewPool {
56 public static final boolean PoolCallbacks = false;
57 }
58 }
59
60 public static class Values {
61 public static class Window {
Winson Chung4d7b0922014-03-13 17:14:17 -070062 // The dark background dim is set behind the empty recents view
Winson Chung303e1ff2014-03-07 15:06:19 -080063 public static final float DarkBackgroundDim = 0.5f;
Winson Chung4d7b0922014-03-13 17:14:17 -070064 // The background dim is set behind the card stack
Winson Chung303e1ff2014-03-07 15:06:19 -080065 public static final float BackgroundDim = 0.35f;
66 }
67
68 public static class RecentsTaskLoader {
69 // XXX: This should be calculated on the first load
70 public static final int PreloadFirstTasksCount = 5;
Winson Chung4d7b0922014-03-13 17:14:17 -070071 // For debugging, this allows us to multiply the number of cards for each task
Winson Chung303e1ff2014-03-07 15:06:19 -080072 public static final int TaskEntryMultiplier = 1;
73 }
74
75 public static class TaskStackView {
76 public static class Animation {
77 public static final int TaskRemovedReshuffleDuration = 200;
78 public static final int SnapScrollBackDuration = 650;
Winson Chung303e1ff2014-03-07 15:06:19 -080079 }
80
Winson Chung47c4c692014-03-17 10:17:11 -070081 public static final int TaskStackOverscrollRange = 150;
82
Winson Chung303e1ff2014-03-07 15:06:19 -080083 // The padding will be applied to the smallest dimension, and then applied to all sides
84 public static final float StackPaddingPct = 0.15f;
85 // The overlap height relative to the task height
86 public static final float StackOverlapPct = 0.65f;
87 // The height of the peek space relative to the stack height
88 public static final float StackPeekHeightPct = 0.1f;
89 // The min scale of the last card in the peek area
90 public static final float StackPeekMinScale = 0.9f;
91 // The number of cards we see in the peek space
92 public static final int StackPeekNumCards = 3;
93 }
94
95 public static class TaskView {
96 public static class Animation {
97 public static final int TaskDataUpdatedFadeDuration = 250;
Winson Chung47c4c692014-03-17 10:17:11 -070098 public static final int TaskIconOnEnterDuration = 175;
99 public static final int TaskIconOnLeavingDuration = 75;
Winson Chung303e1ff2014-03-07 15:06:19 -0800100 }
101
102 public static final boolean AnimateFrontTaskIconOnEnterRecents = true;
103 public static final boolean AnimateFrontTaskIconOnLeavingRecents = true;
Winson Chung47c4c692014-03-17 10:17:11 -0700104 public static final boolean AnimateFrontTaskIconOnEnterUseClip = false;
Winson Chung303e1ff2014-03-07 15:06:19 -0800105 public static final boolean AnimateFrontTaskIconOnLeavingUseClip = false;
106 public static final boolean DrawColoredTaskBars = false;
107 public static final boolean UseRoundedCorners = true;
108 public static final float RoundedCornerRadiusDps = 3;
109
110 public static final float TaskBarHeightDps = 54;
111 public static final float TaskIconSizeDps = 60;
112 }
113 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800114}