1

I want to create application without action bar and with AppTheme, I mean for example progress bar should look like progress bar in android 5.

1 Answers1

0

Do the following changes in style.xml

styles.xml:

     <style name="AppBaseTheme" parent="Theme.AppCompat.Light" >
               <item name="android:windowNoTitle">true</item>
               <item name="android:windowActionBar">false</item>
     </style>
usr30911
  • 2,731
  • 7
  • 26
  • 56