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 androidx.lifecycle.viewmodel.compose.viewModel
24 import com.android.settings.R
25 import com.android.settings.network.telephony.TelephonyRepository
26 import com.android.settings.network.telephony.wificalling.CrossSimCallingViewModel
27 import com.android.settingslib.spa.widget.preference.SwitchPreference
28 import com.android.settingslib.spa.widget.preference.SwitchPreferenceModel
29 import kotlinx.coroutines.Dispatchers
30 import kotlinx.coroutines.launch
31
32 @Composable
33 fun AutomaticDataSwitchingPreference(
34 isAutoDataEnabled: () -> Boolean?,
35 setAutoDataEnabled: (newEnabled: Boolean) -> Unit,
36 ) {
37 val autoDataSummary = stringResource(id = R.string.primary_sim_automatic_data_msg)
38 val coroutineScope = rememberCoroutineScope()
39 val crossSimCallingViewModel = viewModel<CrossSimCallingViewModel>() // handles backup calling
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 crossSimCallingViewModel.updateCrossSimCalling()
49 }
50 }
51 }
52 )
53 }
54
TelephonyRepositorynull55 fun TelephonyRepository.setAutomaticData(subId: Int, newEnabled: Boolean) {
56 setMobileDataPolicyEnabled(
57 subId = subId,
58 policy = TelephonyManager.MOBILE_DATA_POLICY_AUTO_DATA_SWITCH,
59 enabled = newEnabled,
60 )
61 }
62