I have a service with an following constructor:
public ShimmerService(Context context, Handler handler) { mHandler = handler; }
I want
Dont pass the Handler to the Service, Handler doesnt implement Parcelable, or Serializable, so I dont think thats possible.
Create the Handler in the Service, and pass any data you need to create the Handler via Intent Extras to the Service.