Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java.lang.InstantiationException: class has no zero argument constructor

I am trying to use a BroadcastReceiver as an inner class to track the network state but I got the exception in the title. What should I do to fix this problem?

public class NetworkChangeReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        final ConnectivityManager connMgr = (ConnectivityManager) context
                .getSystemService(Context.CONNECTIVITY_SERVICE);

        final android.net.NetworkInfo wifi = connMgr.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
        final android.net.NetworkInfo mobile = connMgr.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);

        if (wifi.isAvailable() || mobile.isAvailable()) {
            setupData();
            Log.d("Netowk Available ", "Flag No 1");
        }
    }
}
like image 674
Karim Abdell Salam Avatar asked Apr 29 '15 14:04

Karim Abdell Salam


3 Answers

Your

inner Broadcast receiver must be static ( to be registered through Manifest)

OR

Non-static broadcast receiver must be registered and unregistered inside the Parent class

for this.

I was using an Inner broadcast reciver, without registering it within the class. Either make it static and register in Manifest , or Make it non static and register and unregister inside the parent class .

like image 190
Ajji Avatar answered Nov 10 '22 10:11

Ajji


A non-static inner class cannot be registered via the AndroidManifest.xml. You can either:

Register it dynamically as outlined in this thread, and remove the empty constructor.

Or,

Make your inner class static, and register it in the AndroidManifext.xml.

like image 16
Mehmet K Avatar answered Nov 10 '22 10:11

Mehmet K


just make your Receiver Class static like:

public [static] class ReceiverClass extends BroadcastReceiver

like image 1
Hadi Avatar answered Nov 10 '22 09:11

Hadi