In my manifest I have this:
<activity
  android:name=".BackgroundOptionSlider"
  android:label="@string/update_background" >
</activity>
but my class, BackgroundOptionsSlider, need to have a private default constructor for what I am doing (making sure there is only one instance ever) and for this reason I am getting an error in my manifest's stating that I need to have a  public default constructor. How can I get past this?
 
     
     
     
    