1 /* <lambda>null2 * Copyright (C) 2024 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.settings.network 18 19 import android.content.Context 20 import androidx.lifecycle.LifecycleOwner 21 import androidx.preference.Preference 22 import androidx.preference.PreferenceScreen 23 import com.android.settings.R 24 import com.android.settings.core.BasePreferenceController 25 import com.android.settingslib.Utils 26 import com.android.settingslib.spa.framework.util.collectLatestWithLifecycle 27 28 class InternetPreferenceControllerV2(context: Context, preferenceKey: String) : 29 BasePreferenceController(context, preferenceKey) { 30 31 private val repository = InternetPreferenceRepository(mContext) 32 private var preference: Preference? = null 33 34 override fun getAvailabilityStatus() = 35 if (mContext.resources.getBoolean(R.bool.config_show_internet_settings)) AVAILABLE 36 else UNSUPPORTED_ON_DEVICE 37 38 override fun displayPreference(screen: PreferenceScreen) { 39 super.displayPreference(screen) 40 preference = screen.findPreference(preferenceKey) 41 } 42 43 override fun onViewCreated(viewLifecycleOwner: LifecycleOwner) { 44 repository.displayInfoFlow().collectLatestWithLifecycle(viewLifecycleOwner) { displayInfo -> 45 preference?.apply { 46 summary = displayInfo.summary 47 icon = 48 mContext.getDrawable(displayInfo.iconResId)?.apply { 49 setTintList(Utils.getColorAttr(mContext, android.R.attr.colorControlNormal)) 50 } 51 } 52 } 53 } 54 } 55