[DS] Correct the access method for telephony system property
Bug: 18675498 Review: https://partner-android-review.git.corp.google.com/#/c/198822 Change-Id: I7d6eab7d8f513de20bd8995b999a124097f725e7
This commit is contained in:
@@ -34,6 +34,7 @@ import android.preference.Preference;
|
||||
import android.preference.PreferenceActivity;
|
||||
import android.preference.SwitchPreference;
|
||||
import android.provider.Telephony;
|
||||
import android.telephony.SubscriptionManager;
|
||||
import android.telephony.TelephonyManager;
|
||||
import android.util.Log;
|
||||
import android.view.KeyEvent;
|
||||
@@ -94,6 +95,7 @@ public class ApnEditor extends PreferenceActivity
|
||||
private Cursor mCursor;
|
||||
private boolean mNewApn;
|
||||
private boolean mFirstTime;
|
||||
private int mSubId;
|
||||
private Resources mRes;
|
||||
private TelephonyManager mTelephonyManager;
|
||||
|
||||
@@ -191,6 +193,7 @@ public class ApnEditor extends PreferenceActivity
|
||||
|
||||
final Intent intent = getIntent();
|
||||
final String action = intent.getAction();
|
||||
mSubId = intent.getIntExtra("sub_id", SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
||||
|
||||
mFirstTime = icicle == null;
|
||||
|
||||
@@ -263,8 +266,7 @@ public class ApnEditor extends PreferenceActivity
|
||||
mMnc.setText(mCursor.getString(MNC_INDEX));
|
||||
mApnType.setText(mCursor.getString(TYPE_INDEX));
|
||||
if (mNewApn) {
|
||||
String numeric =
|
||||
SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC);
|
||||
String numeric = mTelephonyManager.getSimOperator(mSubId);
|
||||
// MCC is first 3 chars and then in 2 - 3 chars of MNC
|
||||
if (numeric != null && numeric.length() > 4) {
|
||||
// Country code
|
||||
@@ -387,8 +389,7 @@ public class ApnEditor extends PreferenceActivity
|
||||
if (values[mvnoIndex].equals("SPN")) {
|
||||
mMvnoMatchData.setText(mTelephonyManager.getSimOperatorName());
|
||||
} else if (values[mvnoIndex].equals("IMSI")) {
|
||||
String numeric =
|
||||
SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC);
|
||||
String numeric = mTelephonyManager.getSimOperator(mSubId);
|
||||
mMvnoMatchData.setText(numeric + "x");
|
||||
} else if (values[mvnoIndex].equals("GID")) {
|
||||
mMvnoMatchData.setText(mTelephonyManager.getGroupIdLevel1());
|
||||
|
Reference in New Issue
Block a user