Loading packages/SystemUI/src/com/android/systemui/qs/QSFooter.java +9 −4 Original line number Diff line number Diff line Loading @@ -184,6 +184,9 @@ public class QSFooter implements OnClickListener, DialogInterface.OnClickListene profileVpn, hasProfileOwner, isBranded); if (deviceOwnerPackage == null) { mDialog.setMessage(msg); if (mSecurityController.isVpnEnabled() && !mSecurityController.isVpnRestricted()) { mDialog.setButton(DialogInterface.BUTTON_NEGATIVE, getSettingsButton(), this); } } else { View dialogView = LayoutInflater.from(mContext) .inflate(R.layout.quick_settings_footer_dialog, null, false); Loading @@ -201,10 +204,12 @@ public class QSFooter implements OnClickListener, DialogInterface.OnClickListene final SpannableStringBuilder message = new SpannableStringBuilder(); message.append(mContext.getString(R.string.monitoring_description_do_body_vpn, primaryVpn)); if (!mSecurityController.isVpnRestricted()) { message.append(mContext.getString( R.string.monitoring_description_vpn_settings_separator)); message.append(mContext.getString(R.string.monitoring_description_vpn_settings), new VpnSpan(), 0); } TextView vpnWarning = (TextView) dialogView.findViewById(R.id.vpn_warning); vpnWarning.setText(message); Loading Loading
packages/SystemUI/src/com/android/systemui/qs/QSFooter.java +9 −4 Original line number Diff line number Diff line Loading @@ -184,6 +184,9 @@ public class QSFooter implements OnClickListener, DialogInterface.OnClickListene profileVpn, hasProfileOwner, isBranded); if (deviceOwnerPackage == null) { mDialog.setMessage(msg); if (mSecurityController.isVpnEnabled() && !mSecurityController.isVpnRestricted()) { mDialog.setButton(DialogInterface.BUTTON_NEGATIVE, getSettingsButton(), this); } } else { View dialogView = LayoutInflater.from(mContext) .inflate(R.layout.quick_settings_footer_dialog, null, false); Loading @@ -201,10 +204,12 @@ public class QSFooter implements OnClickListener, DialogInterface.OnClickListene final SpannableStringBuilder message = new SpannableStringBuilder(); message.append(mContext.getString(R.string.monitoring_description_do_body_vpn, primaryVpn)); if (!mSecurityController.isVpnRestricted()) { message.append(mContext.getString( R.string.monitoring_description_vpn_settings_separator)); message.append(mContext.getString(R.string.monitoring_description_vpn_settings), new VpnSpan(), 0); } TextView vpnWarning = (TextView) dialogView.findViewById(R.id.vpn_warning); vpnWarning.setText(message); Loading