I want to start my activity when my wifi will be switch on so that I call my activity when WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION. It will be working fine with 2.3(Gingerbread) samsung tap but same program won't work in 3.1(Honeycomb)samsung tap.guide why such type of issue will be happen here is my hole code:
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.wifi.WifiManager;
import android.util.Log;
/**
* A BroadcastReceiver that listens for updates for the
* ExampleAppWidgetProvider. This BroadcastReceiver starts off disabled, and we
* only enable it when there is a widget instance created, in order to only
* receive notifications when we need them.
*/
public class WIFIBroadcastReceiver extends BroadcastReceiver {
public static String packageName = "com.example.wifi";
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
if (action.equals(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION)) {
if (intent.getBooleanExtra(WifiManager.EXTRA_SUPPLICANT_CONNECTED,
false)) {
Log.d(packageName, "WIFI Connected");
if (context != null) {
Intent ssIntent = new Intent(context,
com.example.wifi.Activity.class);
ssIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(ssIntent);
}
} else {
Log.d(packageName, "WIFI Connection was Lost");
}
}
}
}