We just changed our application to use the appcompat-v7 support library in order to take advantage of the support actionbar and support Material themes. Using <
appcompat-v7 support
Replace
public class class_name extends AppCompatActivity { ......... }
With
public class class_name extends Activity { ......... }
This helped me.