- Add the setup flow for switching sim and rename and setup primary sim items - Add the bottom sheet and progress dialog. Bug: 318310357 Bug: 298898436 Bug: 298891941 Test: build pass. Will upload another cl for testing Change-Id: Ie9680f0a67afe453c1449c0f2b59e98fd627e215
111 lines
4.2 KiB
Kotlin
111 lines
4.2 KiB
Kotlin
/*
|
|
* Copyright (C) 2024 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.spa.network
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
import androidx.compose.foundation.layout.padding
|
|
import androidx.compose.material.icons.Icons
|
|
import androidx.compose.material.icons.outlined.SignalCellularAlt
|
|
import androidx.compose.material3.Text
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.runtime.getValue
|
|
import androidx.compose.runtime.mutableStateOf
|
|
import androidx.compose.runtime.remember
|
|
import androidx.compose.runtime.setValue
|
|
import androidx.compose.ui.Modifier
|
|
import androidx.compose.ui.res.stringResource
|
|
import com.android.settings.R
|
|
import com.android.settings.network.SimOnboardingService
|
|
import com.android.settingslib.spa.framework.theme.SettingsDimension
|
|
import com.android.settingslib.spa.widget.dialog.AlertDialogButton
|
|
import com.android.settingslib.spa.widget.dialog.rememberAlertDialogPresenter
|
|
import com.android.settingslib.spa.widget.editor.SettingsOutlinedTextField
|
|
|
|
import com.android.settingslib.spa.widget.preference.Preference
|
|
import com.android.settingslib.spa.widget.preference.PreferenceModel
|
|
import com.android.settingslib.spa.widget.scaffold.BottomAppBarButton
|
|
import com.android.settingslib.spa.widget.scaffold.SuwScaffold
|
|
import com.android.settingslib.spa.widget.ui.SettingsBody
|
|
|
|
/**
|
|
* the sim onboarding label compose
|
|
*/
|
|
@Composable
|
|
fun SimOnboardingLabelSimImpl(
|
|
nextAction: () -> Unit,
|
|
cancelAction: () -> Unit,
|
|
onboardingService: SimOnboardingService
|
|
) {
|
|
SuwScaffold(
|
|
imageVector = Icons.Outlined.SignalCellularAlt,
|
|
title = stringResource(R.string.sim_onboarding_label_sim_title),
|
|
actionButton = BottomAppBarButton(
|
|
stringResource(R.string.sim_onboarding_next),
|
|
nextAction
|
|
),
|
|
dismissButton = BottomAppBarButton(
|
|
stringResource(R.string.cancel),
|
|
cancelAction
|
|
),
|
|
) {
|
|
labelSimBody(onboardingService)
|
|
}
|
|
}
|
|
|
|
@Composable
|
|
private fun labelSimBody(onboardingService: SimOnboardingService) {
|
|
Column(Modifier.padding(SettingsDimension.itemPadding)) {
|
|
SettingsBody(stringResource(R.string.sim_onboarding_label_sim_msg))
|
|
}
|
|
|
|
for (subInfo in onboardingService.getSelectableSubscriptionInfoList()) {
|
|
var titleSimName by remember {
|
|
mutableStateOf(
|
|
onboardingService.getSubscriptionInfoDisplayName(subInfo)
|
|
)
|
|
}
|
|
var summaryNumber = subInfo.number
|
|
// TODO using the SubscriptionUtil.getFormattedPhoneNumber
|
|
val alertDialogPresenter = rememberAlertDialogPresenter(
|
|
confirmButton = AlertDialogButton(
|
|
stringResource(R.string.mobile_network_sim_name_rename)
|
|
) {
|
|
onboardingService.addItemForRenaming(subInfo, titleSimName)
|
|
},
|
|
dismissButton = AlertDialogButton(stringResource(R.string.cancel)) {
|
|
titleSimName = onboardingService.getSubscriptionInfoDisplayName(subInfo)
|
|
},
|
|
title = stringResource(R.string.sim_onboarding_label_sim_dialog_title),
|
|
text = {
|
|
Text(summaryNumber)
|
|
SettingsOutlinedTextField(
|
|
value = titleSimName,
|
|
label = stringResource(R.string.sim_onboarding_label_sim_dialog_label),
|
|
enabled = true
|
|
) {
|
|
titleSimName = it
|
|
}
|
|
},
|
|
)
|
|
Preference(object : PreferenceModel {
|
|
override val title = titleSimName
|
|
override val summary: () -> String
|
|
get() = { summaryNumber }
|
|
override val onClick = alertDialogPresenter::open
|
|
})
|
|
}
|
|
} |