blob: 065222762b330396a96214c963c04e17ee5a1b6e [file] [log] [blame]
Evan Lairde1d13c92018-03-20 16:58:01 -04001/*
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 */
16
17package com.android.systemui.statusbar;
18
19import com.android.internal.statusbar.StatusBarIcon;
Gus Prevasab336792018-11-14 13:52:20 -050020
Evan Lairde1d13c92018-03-20 16:58:01 -040021import java.util.ArrayList;
22import java.util.List;
23
24/**
25 * Holds an array of {@link com.android.internal.statusbar.StatusBarIcon}s and draws them
26 * in a linear layout
27 */
28public class StatusBarIconContainer {
29 private final List<StatusBarIcon> mIcons = new ArrayList<>();
30
31 public StatusBarIconContainer(List<StatusBarIcon> icons) {
32 mIcons.addAll(icons);
33 }
34}