Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.net.ConnectivityManager;

public class Main {
    /**
     * Determine the current networking is WIFI
     * 
     * @param context
     * @return
     */
    public static boolean CurrentNoteworkTypeIsWIFI(Context context) {
        ConnectivityManager connectionManager = (ConnectivityManager) context
                .getSystemService(Context.CONNECTIVITY_SERVICE);
        return connectionManager.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI;
    }
}