android手机在没有3G信号的地方 可以用2G的信号么还是?是自动转的么还是??多谢指点。

解决方案 »

  1.   

    是自动转换的,在StatusBarPolicy.java类里面:// If 3G(EV) and 1x network are available than 3G should be
    // displayed, displayed RSSI should be from the EV side.
    // If a voice call is made then RSSI should switch to 1x.
    if ((mPhoneState == TelephonyManager.CALL_STATE_IDLE) && isEvdo()){
        iconLevel = getEvdoLevel();
        if (false) {
            Slog.d(TAG, "use Evdo level=" + iconLevel + " to replace Cdma Level=" + getCdmaLevel());
         }
    } else {
        iconLevel = getCdmaLevel();
    }