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 androidx.compose.runtime.Composable 20 import androidx.compose.runtime.rememberCoroutineScope 21 import androidx.compose.ui.res.stringResource 22 import androidx.lifecycle.viewmodel.compose.viewModel 23 import com.android.settings.R 24 import com.android.settings.network.telephony.wificalling.CrossSimCallingViewModel 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 AutomaticDataSwitchingPreference( 32 isAutoDataEnabled: () -> Boolean?, 33 setAutoDataEnabled: (newEnabled: Boolean) -> Unit, 34 ) { 35 val autoDataSummary = stringResource(id = R.string.primary_sim_automatic_data_msg) 36 val coroutineScope = rememberCoroutineScope() 37 // CrossSimCallingViewModel is responsible for maintaining the correct cross sim calling 38 // settings (backup calling). 39 viewModel<CrossSimCallingViewModel>() 40 SwitchPreference( 41 object : SwitchPreferenceModel { 42 override val title = stringResource(id = R.string.primary_sim_automatic_data_title) 43 override val summary = { autoDataSummary } 44 override val checked = { isAutoDataEnabled() } 45 override val onCheckedChange: (Boolean) -> Unit = { newEnabled -> 46 coroutineScope.launch(Dispatchers.Default) { 47 setAutoDataEnabled(newEnabled) 48 } 49 } 50 } 51 ) 52 } 53