Snap for 8006021 from c0ff08c398 to tm-release
Change-Id: I287333ef791b393fbb6a1a6881e95bc9db8ea774
This commit is contained in:
@@ -5298,13 +5298,13 @@
|
|||||||
<!-- Message of the magnification mode option to choose the magnification mode. [CHAR LIMIT=none] -->
|
<!-- Message of the magnification mode option to choose the magnification mode. [CHAR LIMIT=none] -->
|
||||||
<string name="accessibility_magnification_area_settings_mode_switch_summary">Tap the switch button to move between both options</string>
|
<string name="accessibility_magnification_area_settings_mode_switch_summary">Tap the switch button to move between both options</string>
|
||||||
<!-- Title for the accessibility magnification switch shortcut dialog. [CHAR LIMIT=48] -->
|
<!-- Title for the accessibility magnification switch shortcut dialog. [CHAR LIMIT=48] -->
|
||||||
<string name="accessibility_magnification_switch_shortcut_title">This may slow down your keyboard</string>
|
<string name="accessibility_magnification_switch_shortcut_title">Switch to accessibility button?</string>
|
||||||
<!-- Message for the accessibility magnification switch shortcut dialog. [CHAR LIMIT=none] -->
|
<!-- Message for the accessibility magnification switch shortcut dialog. [CHAR LIMIT=none] -->
|
||||||
<string name="accessibility_magnification_switch_shortcut_message">When using triple-tap to magnify part of your screen, you may notice issues over the keyboard.\n\nTo avoid this, you can change your magnification shortcut from triple-tap to another option.\n<annotation id="link">Change setting</annotation></string>
|
<string name="accessibility_magnification_switch_shortcut_message">Using triple-tap to magnify part of your screen causes typing and other delays.\n\nThe accessibility button floats on your screen over other apps. Tap it to magnify.</string>
|
||||||
<!-- Title for the switch shortcut button in accessibility switch shortcut dialog to confirm the action. [CHAR LIMIT=45] -->
|
<!-- Title for the switch shortcut button in accessibility switch shortcut dialog to change the config shortcut value. [CHAR LIMIT=45] -->
|
||||||
<string name="accessibility_magnification_switch_shortcut_positive_button">Continue anyway</string>
|
<string name="accessibility_magnification_switch_shortcut_positive_button">Switch to accessibility button</string>
|
||||||
<!-- Title for the cancel button in accessibility switch shortcut dialog to go back to edit. [CHAR LIMIT=54] -->
|
<!-- Title for the cancel button in accessibility switch shortcut dialog to keep the config shortcut value. [CHAR LIMIT=54] -->
|
||||||
<string name="accessibility_magnification_switch_shortcut_negative_button">Cancel</string>
|
<string name="accessibility_magnification_switch_shortcut_negative_button">Use triple-tap</string>
|
||||||
<!-- Title for the accessibility preference screen to enable screen magnification settings. [CHAR LIMIT=35] -->
|
<!-- Title for the accessibility preference screen to enable screen magnification settings. [CHAR LIMIT=35] -->
|
||||||
<string name="accessibility_magnification_service_settings_title">Magnification settings</string>
|
<string name="accessibility_magnification_service_settings_title">Magnification settings</string>
|
||||||
<!-- Title for the accessibility preference screen to enable triple-tap gesture screen magnification. [CHAR LIMIT=35] -->
|
<!-- Title for the accessibility preference screen to enable triple-tap gesture screen magnification. [CHAR LIMIT=35] -->
|
||||||
|
|||||||
@@ -1230,8 +1230,4 @@ public final class Utils extends com.android.settingslib.Utils {
|
|||||||
public static int getHomepageIconColorHighlight(Context context) {
|
public static int getHomepageIconColorHighlight(Context context) {
|
||||||
return getColorAttrDefaultColor(context, android.R.attr.textColorSecondaryInverse);
|
return getColorAttrDefaultColor(context, android.R.attr.textColorSecondaryInverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isProviderModelEnabled(Context context) {
|
|
||||||
return FeatureFlagUtils.isEnabled(context, FeatureFlagUtils.SETTINGS_PROVIDER_MODEL);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,10 @@ import java.util.List;
|
|||||||
*/
|
*/
|
||||||
public class UsbBackend {
|
public class UsbBackend {
|
||||||
|
|
||||||
static final int PD_ROLE_SWAP_TIMEOUT_MS = 3000;
|
// extend this value from 3s to 4s because of switching data role
|
||||||
|
// in USB driver side takes about 3s in some devices, plus the usb
|
||||||
|
// port change event dispatching time, 3s is not enough.
|
||||||
|
static final int PD_ROLE_SWAP_TIMEOUT_MS = 4000;
|
||||||
static final int NONPD_ROLE_SWAP_TIMEOUT_MS = 15000;
|
static final int NONPD_ROLE_SWAP_TIMEOUT_MS = 15000;
|
||||||
|
|
||||||
private final boolean mFileTransferRestricted;
|
private final boolean mFileTransferRestricted;
|
||||||
|
|||||||
@@ -142,12 +142,7 @@ public class DataUsageList extends DataUsageBaseFragment
|
|||||||
mChart = findPreference(KEY_CHART_DATA);
|
mChart = findPreference(KEY_CHART_DATA);
|
||||||
mApps = findPreference(KEY_APPS_GROUP);
|
mApps = findPreference(KEY_APPS_GROUP);
|
||||||
|
|
||||||
// TODO(b/167474581): This is a temporary solution to hide unnecessary warning
|
final Preference unnecessaryWarningPreference = findPreference("operator_warning");
|
||||||
// preference, when the provider model is completed, the following code should be removed.
|
|
||||||
final Preference unnecessaryWarningPreference =
|
|
||||||
FeatureFlagUtils.isEnabled(getContext(), FeatureFlagUtils.SETTINGS_PROVIDER_MODEL)
|
|
||||||
? findPreference("operator_warning")
|
|
||||||
: findPreference("non_carrier_data_usage_warning");
|
|
||||||
if (unnecessaryWarningPreference != null) {
|
if (unnecessaryWarningPreference != null) {
|
||||||
unnecessaryWarningPreference.setVisible(false);
|
unnecessaryWarningPreference.setVisible(false);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
package com.android.settings.network;
|
|
||||||
|
|
||||||
import android.annotation.Nullable;
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.Intent;
|
|
||||||
import android.util.Log;
|
|
||||||
|
|
||||||
import com.android.settings.activityembedding.ActivityEmbeddingRulesController;
|
|
||||||
|
|
||||||
public class MobileNetworkTwoPaneUtils {
|
|
||||||
|
|
||||||
private static final String TAG = "MobileNetworkTwoPaneUtils";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* TODO: b/206061070, the problem of multi-instance should be fixed in Android T to apply the
|
|
||||||
* Settings' architecture and 2 panes mode instead of registering the rule.
|
|
||||||
*
|
|
||||||
* The launchMode of MobileNetworkActivity is singleTask, set SplitPairRule to show in 2-pane.
|
|
||||||
*/
|
|
||||||
public static void registerTwoPaneForMobileNetwork(Context context, Intent intent,
|
|
||||||
@Nullable String secondaryIntentAction) {
|
|
||||||
Log.d(TAG, "registerTwoPaneForMobileNetwork");
|
|
||||||
ActivityEmbeddingRulesController.registerTwoPanePairRuleForSettingsHome(
|
|
||||||
context,
|
|
||||||
intent.getComponent(),
|
|
||||||
secondaryIntentAction /* secondaryIntentAction */,
|
|
||||||
false /* clearTop */);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -118,9 +118,7 @@ public class NetworkDashboardFragment extends DashboardFragment implements
|
|||||||
controllers.add(internetPreferenceController);
|
controllers.add(internetPreferenceController);
|
||||||
}
|
}
|
||||||
controllers.add(privateDnsPreferenceController);
|
controllers.add(privateDnsPreferenceController);
|
||||||
if (Utils.isProviderModelEnabled(context)) {
|
controllers.add(new NetworkProviderCallsSmsController(context, lifecycle));
|
||||||
controllers.add(new NetworkProviderCallsSmsController(context, lifecycle));
|
|
||||||
}
|
|
||||||
return controllers;
|
return controllers;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -155,20 +153,7 @@ public class NetworkDashboardFragment extends DashboardFragment implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
||||||
new BaseSearchIndexProvider(R.xml.network_and_internet) {
|
new BaseSearchIndexProvider(R.xml.network_provider_internet) {
|
||||||
|
|
||||||
@Override
|
|
||||||
// TODO(b/167474581): Should remove this method when Provider Model finished.
|
|
||||||
public List<SearchIndexableResource> getXmlResourcesToIndex(Context context,
|
|
||||||
boolean enabled) {
|
|
||||||
if (Utils.isProviderModelEnabled(context)) {
|
|
||||||
final SearchIndexableResource sir = new SearchIndexableResource(context);
|
|
||||||
sir.xmlResId = R.xml.network_provider_internet;
|
|
||||||
return Arrays.asList(sir);
|
|
||||||
}
|
|
||||||
return super.getXmlResourcesToIndex(context, enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<AbstractPreferenceController> createPreferenceControllers(Context
|
public List<AbstractPreferenceController> createPreferenceControllers(Context
|
||||||
context) {
|
context) {
|
||||||
|
|||||||
@@ -52,7 +52,6 @@ import android.util.Log;
|
|||||||
import com.android.internal.annotations.VisibleForTesting;
|
import com.android.internal.annotations.VisibleForTesting;
|
||||||
import com.android.settings.HelpTrampoline;
|
import com.android.settings.HelpTrampoline;
|
||||||
import com.android.settings.R;
|
import com.android.settings.R;
|
||||||
import com.android.settings.network.MobileNetworkTwoPaneUtils;
|
|
||||||
import com.android.settings.network.SubscriptionUtil;
|
import com.android.settings.network.SubscriptionUtil;
|
||||||
import com.android.settings.network.telephony.MobileNetworkActivity;
|
import com.android.settings.network.telephony.MobileNetworkActivity;
|
||||||
|
|
||||||
@@ -264,9 +263,6 @@ public class SimSelectNotification extends BroadcastReceiver {
|
|||||||
Intent resultIntent = new Intent(Settings.ACTION_MMS_MESSAGE_SETTING);
|
Intent resultIntent = new Intent(Settings.ACTION_MMS_MESSAGE_SETTING);
|
||||||
resultIntent.setClass(context, MobileNetworkActivity.class);
|
resultIntent.setClass(context, MobileNetworkActivity.class);
|
||||||
resultIntent.putExtra(Settings.EXTRA_SUB_ID, subId);
|
resultIntent.putExtra(Settings.EXTRA_SUB_ID, subId);
|
||||||
// MobileNetworkActivity is singleTask, set SplitPairRule to show in 2-pane.
|
|
||||||
MobileNetworkTwoPaneUtils.registerTwoPaneForMobileNetwork(context, resultIntent,
|
|
||||||
Settings.ACTION_MMS_MESSAGE_SETTING);
|
|
||||||
PendingIntent resultPendingIntent = PendingIntent.getActivity(context, 0, resultIntent,
|
PendingIntent resultPendingIntent = PendingIntent.getActivity(context, 0, resultIntent,
|
||||||
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE);
|
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE);
|
||||||
builder.setContentIntent(resultPendingIntent);
|
builder.setContentIntent(resultPendingIntent);
|
||||||
|
|||||||
@@ -58,9 +58,7 @@ public class ConfigureWifiSettings extends DashboardFragment {
|
|||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle icicle) {
|
public void onCreate(Bundle icicle) {
|
||||||
super.onCreate(icicle);
|
super.onCreate(icicle);
|
||||||
if (FeatureFlagUtils.isEnabled(getContext(), FeatureFlagUtils.SETTINGS_PROVIDER_MODEL)) {
|
getActivity().setTitle(R.string.network_and_internet_preferences_title);
|
||||||
getActivity().setTitle(R.string.network_and_internet_preferences_title);
|
|
||||||
}
|
|
||||||
|
|
||||||
mCertinstallerPreference = findPreference(KEY_INSTALL_CREDENTIALS);
|
mCertinstallerPreference = findPreference(KEY_INSTALL_CREDENTIALS);
|
||||||
if (mCertinstallerPreference != null) {
|
if (mCertinstallerPreference != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user