diff --git a/res/layout/radio_info.xml b/res/layout/radio_info.xml index 2d4a1d0e6c9..177c73a8a94 100644 --- a/res/layout/radio_info.xml +++ b/res/layout/radio_info.xml @@ -164,13 +164,6 @@ android:layout_height="1dip" android:background="#000000" /> - - - - - - diff --git a/res/values/strings.xml b/res/values/strings.xml index 24fd13131e4..f7824fe682e 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -484,8 +484,6 @@ All Cell Measurement Info: - Data Connection Real-Time Info: - Data Service: Roaming: diff --git a/src/com/android/settings/RadioInfo.java b/src/com/android/settings/RadioInfo.java index 3063ecc0d3d..c04269c1696 100644 --- a/src/com/android/settings/RadioInfo.java +++ b/src/com/android/settings/RadioInfo.java @@ -54,7 +54,6 @@ import android.telephony.CellSignalStrengthCdma; import android.telephony.CellSignalStrengthGsm; import android.telephony.CellSignalStrengthLte; import android.telephony.CellSignalStrengthWcdma; -import android.telephony.DataConnectionRealTimeInfo; import android.telephony.PreciseCallState; import android.telephony.PhoneStateListener; import android.telephony.PhysicalChannelConfig; @@ -193,7 +192,6 @@ public class RadioInfo extends Activity { private TextView mCfi; private TextView mLocation; private TextView mCellInfo; - private TextView mDcRtInfoTv; private TextView sent; private TextView received; private TextView mPingHostnameV4; @@ -297,12 +295,6 @@ public class RadioInfo extends Activity { updateCellInfo(mCellInfoResult); } - @Override - public void onDataConnectionRealTimeInfoChanged(DataConnectionRealTimeInfo dcRtInfo) { - log("onDataConnectionRealTimeInfoChanged: dcRtInfo=" + dcRtInfo); - updateDcRtInfoTv(dcRtInfo); - } - @Override public void onSignalStrengthsChanged(SignalStrength signalStrength) { log("onSignalStrengthChanged: SignalStrength=" +signalStrength); @@ -432,7 +424,6 @@ public class RadioInfo extends Activity { mLocation = (TextView) findViewById(R.id.location); mCellInfo = (TextView) findViewById(R.id.cellinfo); mCellInfo.setTypeface(Typeface.MONOSPACE); - mDcRtInfoTv = (TextView) findViewById(R.id.dcrtinfo); sent = (TextView) findViewById(R.id.sent); received = (TextView) findViewById(R.id.received); @@ -861,10 +852,6 @@ public class RadioInfo extends Activity { mCellInfo.setText(buildCellInfoString(arrayCi)); } - private final void updateDcRtInfoTv(DataConnectionRealTimeInfo dcRtInfo) { - mDcRtInfoTv.setText(dcRtInfo.toString()); - } - private final void updateMessageWaiting() { mMwi.setText(String.valueOf(mMwiValue));