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

后端 未结 4 2272
旧时难觅i
旧时难觅i 2020-12-05 22:28

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

4条回答
  •  生来不讨喜
    2020-12-05 23:23

    just make your Receiver Class static like:

    public [static] class ReceiverClass extends BroadcastReceiver

提交回复
热议问题