blob: d8dceba352516e50eb6dd66e3cb3d2168a67da26 [file] [log] [blame]
Matt Pietala635bd12020-02-03 13:36:18 -05001/*
2 * Copyright (C) 2020 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.controls.ui
18
Matt Pietal94316e92020-04-22 10:58:32 -040019import android.service.controls.Control
20
21import com.android.systemui.R
22
23class StatusBehavior : Behavior {
Matt Pietalb582b692020-02-14 19:37:57 -050024 lateinit var cvh: ControlViewHolder
25
26 override fun initialize(cvh: ControlViewHolder) {
27 this.cvh = cvh
28 }
29
Matt Pietalcf516132020-05-07 16:50:04 -040030 override fun bind(cws: ControlWithState, colorOffset: Int) {
Matt Pietal94316e92020-04-22 10:58:32 -040031 val status = cws.control?.status ?: Control.STATUS_UNKNOWN
32 val msg = when (status) {
33 Control.STATUS_ERROR -> R.string.controls_error_generic
34 Control.STATUS_NOT_FOUND -> R.string.controls_error_removed
35 else -> com.android.internal.R.string.loading
36 }
37 cvh.status.setText(cvh.context.getString(msg))
Matt Pietalcf516132020-05-07 16:50:04 -040038 cvh.applyRenderInfo(false, colorOffset)
Matt Pietala635bd12020-02-03 13:36:18 -050039 }
40}