Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 17.0Version 16.0 (current version)Version 15.0Version 14.0Version 13.0Version 12.0Version 11.0Version 10.0Version 2.0

Index

On this page

KMManager.hasConnection()


Summary

The hasConnection() method returns whether the device has active network connection.

Syntax

KMManager.hasConnection(Context context)

Parameters

context
The context

Returns

Returns true if application's AndroidManifest.xml file has granted Manifest.permission.ACCESS_NETWORK_STATE permission and the device has an active network connection, false otherwise.

Description

Use this method to check if the device has an active network connection. It is important to make sure there is an active network connection before initiating a download or update.

Examples

Example: Using hasConnection()

The following script illustrate the use of hasConnection():

    if (KMManager.hasConnection(this)) {
        // has network connection
    }
    else {
        // no network connection
    }