1 /* 2 * Copyright (C) 2015 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 17 package com.android.tv.settings; 18 19 import android.support.annotation.Keep; 20 21 /** 22 * This class keeps a reference to the drawables used by LeanbackLauncher 23 */ 24 @Keep 25 public class ResourcesUsedByLauncher { 26 private static final int NET_DISCONNECTED = R.drawable.network_state_disconnected; 27 private static final int NET_ETHERNET = R.drawable.network_state_ethernet; 28 private static final int NET_ETHERNET_NO_INTERNET = 29 R.drawable.network_state_ethernet_no_internet; 30 private static final int NET_WIFI_NO_INTERNET = R.drawable.network_state_wifi_no_internet; 31 private static final int NET_WIFI_0 = R.drawable.network_state_wifi_0; 32 private static final int NET_WIFI_1 = R.drawable.network_state_wifi_1; 33 private static final int NET_WIFI_2 = R.drawable.network_state_wifi_2; 34 private static final int NET_WIFI_3 = R.drawable.network_state_wifi_3; 35 private static final int NET_WIFI_4 = R.drawable.network_state_wifi_4; 36 private static final int NET_CELLULAR_0 = R.drawable.network_state_cellular_0; 37 private static final int NET_CELLULAR_1 = R.drawable.network_state_cellular_1; 38 private static final int NET_CELLULAR_2 = R.drawable.network_state_cellular_2; 39 private static final int NET_CELLULAR_3 = R.drawable.network_state_cellular_3; 40 private static final int NET_CELLULAR_4 = R.drawable.network_state_cellular_4; 41 private static final int NET_CELLULAR_NO_INTERNET_0 = 42 R.drawable.network_state_cellular_no_internet_0; 43 private static final int NET_CELLULAR_NO_INTERNET_1 = 44 R.drawable.network_state_cellular_no_internet_1; 45 private static final int NET_CELLULAR_NO_INTERNET_2 = 46 R.drawable.network_state_cellular_no_internet_2; 47 private static final int NET_CELLULAR_NO_INTERNET_3 = 48 R.drawable.network_state_cellular_no_internet_3; 49 private static final int NET_CELLULAR_NO_INTERNET_4 = 50 R.drawable.network_state_cellular_no_internet_4; 51 } 52