/* * Copyright (C) 2021 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.car.settings.qc; import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE; import static com.android.car.qc.QCItem.QC_TYPE_ACTION_SWITCH; import static com.android.car.settings.qc.SettingsQCRegistry.MOBILE_DATA_ROW_URI; import android.content.Context; import android.content.Intent; import android.graphics.drawable.Icon; import android.net.Uri; import android.telephony.TelephonyManager; import android.text.TextUtils; import androidx.annotation.VisibleForTesting; import com.android.car.qc.QCActionItem; import com.android.car.qc.QCItem; import com.android.car.qc.QCList; import com.android.car.qc.QCRow; import com.android.car.settings.R; import com.android.settingslib.net.DataUsageController; /** * QCItem for showing a mobile data row element. * The row contains a data icon, the current default network name, and a switch * to enable/disable mobile data. */ public class MobileDataRow extends SettingsQCItem { private final DataUsageController mDataUsageController; public MobileDataRow(Context context) { super(context); mDataUsageController = getDataUsageController(context); } @Override QCItem getQCItem() { if (!mDataUsageController.isMobileDataSupported()) { return null; } TelephonyManager manager = getContext().getSystemService(TelephonyManager.class); String subtitle = manager != null ? manager.getNetworkOperatorName() : null; if (TextUtils.isEmpty(subtitle)) { subtitle = null; } Icon icon = MobileNetworkQCUtils.getMobileNetworkSignalIcon(getContext()); QCActionItem dataToggle = new QCActionItem.Builder(QC_TYPE_ACTION_SWITCH) .setChecked(mDataUsageController.isMobileDataEnabled()) .setAction(getBroadcastIntent()) .build(); QCRow dataRow = new QCRow.Builder() .setTitle(getContext().getString(R.string.mobile_network_settings)) .setSubtitle(subtitle) .setIcon(icon) .addEndItem(dataToggle) .build(); return new QCList.Builder() .addRow(dataRow) .build(); } @Override Uri getUri() { return MOBILE_DATA_ROW_URI; } @Override void onNotifyChange(Intent intent) { boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, !mDataUsageController.isMobileDataEnabled()); mDataUsageController.setMobileDataEnabled(newState); } @Override Class getBackgroundWorkerClass() { return MobileDataRowWorker.class; } @VisibleForTesting DataUsageController getDataUsageController(Context context) { return new DataUsageController(context); } }