Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9303cac authored by Shruthi Krishna's avatar Shruthi Krishna Committed by Ricardo Cerqueira
Browse files

SystemUi: Remove update to Carrier text

Msim makes the carrier text a LinearLayout. Remove the update
to the carrier text which expects it to be a TextView

Change-Id: I1db24a73c500f3443ba024810681325290f58729
parent 2144e552
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -46,7 +46,6 @@ public class KeyguardStatusBarView extends RelativeLayout
    private boolean mKeyguardUserSwitcherShowing;
    private boolean mBatteryListening;

    private TextView mCarrierLabel;
    private View mSystemIconsSuperContainer;
    private MultiUserSwitch mMultiUserSwitch;
    private ImageView mMultiUserAvatar;
@@ -69,7 +68,6 @@ public class KeyguardStatusBarView extends RelativeLayout
        mMultiUserSwitch = (MultiUserSwitch) findViewById(R.id.multi_user_switch);
        mMultiUserAvatar = (ImageView) findViewById(R.id.multi_user_avatar);
        mBatteryLevel = (TextView) findViewById(R.id.battery_level);
        mCarrierLabel = (TextView) findViewById(R.id.keyguard_carrier_text);
        loadDimens();
        mFastOutSlowInInterpolator = AnimationUtils.loadInterpolator(getContext(),
                android.R.interpolator.fast_out_slow_in);
@@ -81,9 +79,6 @@ public class KeyguardStatusBarView extends RelativeLayout
        super.onConfigurationChanged(newConfig);

        // Respect font size setting.
        mCarrierLabel.setTextSize(TypedValue.COMPLEX_UNIT_PX,
                getResources().getDimensionPixelSize(
                        com.android.internal.R.dimen.text_size_small_material));
        mBatteryLevel.setTextSize(TypedValue.COMPLEX_UNIT_PX,
                getResources().getDimensionPixelSize(R.dimen.battery_level_text_size));
    }