Android快速显示4G

快速显示4G设置里面

- packages/services/Telephony/src/com/android/phone/MobileNetworkSettings.java -
index a06543d..3a18008 100644
@@ -284,9 +284,10 @@ public class MobileNetworkSettings extends PreferenceActivity implements
             }else{
                     setNvramValue4G(0);
             }
-             Intent intent = new Intent(TelephonyIntents.ACTION_SUBINFO_CONTENT_CHANGE);
-             intent.putExtra("type", 1);
-             this.sendBroadcast(intent);
+	         Intent intent = new Intent(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
+	         intent.putExtra("type", 1);
+	         intent.putExtra("subscription", 1);
+	         this.sendBroadcast(intent);
             mButtonEnabledNetworks.setValue(Integer.toString(settingsNetworkMode));
             return true;
         } else if (preference == mButtonDataRoam) {

你可能感兴趣的:(Android快速显示4G)