The emergency calls might not work properly via wifi calling, especially in areas with no 2G/3G coverage. Display the disclaimer for the this limitation when a user enabled the wifi calling setting. Test: manual - Checked that the disclaimer for emergency call limitation is shown when changing wifi calling setting to turned on. Test: auto - Passed EmergencyCallLimitationDisclaimerTest. Bug: 68115846 Change-Id: I881d479c1e02525ac614c66594637a5e0347d70c
60 lines
1.9 KiB
Java
60 lines
1.9 KiB
Java
/*
|
|
* Copyright (C) 2018 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.wifi.calling;
|
|
|
|
import android.content.Context;
|
|
|
|
import com.android.internal.annotations.VisibleForTesting;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Factory class to create disclaimer items list.
|
|
*/
|
|
@VisibleForTesting
|
|
public final class DisclaimerItemFactory {
|
|
|
|
/**
|
|
* Creates disclaimer items list.
|
|
*
|
|
* @param context The application context
|
|
* @param subId The subscription id.
|
|
* @return The {@link DisclaimerItem} list instance, if there are no items, return empty list.
|
|
*/
|
|
public static List<DisclaimerItem> create(Context context, int subId) {
|
|
List<DisclaimerItem> itemList = getDisclaimerItemList(context, subId);
|
|
Iterator itr = itemList.iterator();
|
|
while (itr.hasNext()) {
|
|
DisclaimerItem item = (DisclaimerItem) itr.next();
|
|
if (!item.shouldShow()) {
|
|
itr.remove();
|
|
}
|
|
}
|
|
return itemList;
|
|
}
|
|
|
|
private static List<DisclaimerItem> getDisclaimerItemList(Context context, int subId) {
|
|
List<DisclaimerItem> itemList = new ArrayList<DisclaimerItem>();
|
|
itemList.add(new LocationPolicyDisclaimer(context, subId));
|
|
itemList.add(new EmergencyCallLimitationDisclaimer(context, subId));
|
|
|
|
return itemList;
|
|
}
|
|
}
|