Package com.gwtmobile.phonegap.client.Network

Examples of com.gwtmobile.phonegap.client.Network.ConnectionType


        break;
      }
    }

    private void getConnectionType() {
      ConnectionType type = Network.getConnectionType();
    text.setHTML("type=" + type.toString() + "<br/>" +
        "UNKNOWN:" + type.isUnknown() + "<br/>" +   
        "ETHERNET:" + type.isEthernet() + "<br/>" +   
        "WIFI:" + type.isWifi() + "<br/>" +   
        "CELL_2G:" + type.isCell2G() + "<br/>" +   
        "CELL_3G:" + type.isCell3G() + "<br/>" +   
        "CELL_4G:" + type.isCell4G() + "<br/>" +   
        "NONE:" + type.isNone() + "<br/>"  
    );
  }
View Full Code Here

TOP

Related Classes of com.gwtmobile.phonegap.client.Network.ConnectionType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.