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.spa.network 18 19 import android.telephony.TelephonyManager 20 import androidx.compose.runtime.Composable 21 import androidx.compose.runtime.rememberCoroutineScope 22 import androidx.compose.ui.res.stringResource 23 import com.android.settings.R 24 import com.android.settings.network.telephony.TelephonyRepository 25 import com.android.settingslib.spa.widget.preference.SwitchPreference 26 import com.android.settingslib.spa.widget.preference.SwitchPreferenceModel 27 import kotlinx.coroutines.Dispatchers 28 import kotlinx.coroutines.launch 29 30 @Composable 31 fun MobileDataSwitchingPreference( 32 isMobileDataEnabled: () -> Boolean?, 33 setMobileDataEnabled: (newEnabled: Boolean) -> Unit, 34 ) { 35 val mobileDataSummary = stringResource(id = R.string.mobile_data_settings_summary) 36 val coroutineScope = rememberCoroutineScope() 37 SwitchPreference( 38 object : SwitchPreferenceModel { 39 override val title = stringResource(id = R.string.mobile_data_settings_title) 40 override val summary = { mobileDataSummary } 41 override val checked = { isMobileDataEnabled() } 42 override val onCheckedChange: (Boolean) -> Unit = { newEnabled -> 43 coroutineScope.launch(Dispatchers.Default) { 44 setMobileDataEnabled(newEnabled) 45 } 46 } 47 override val changeable:() -> Boolean = {true} 48 } 49 ) 50 } 51