Short answer : no, you have to activate your AppCompatActivty activity
You can create a toolbar without AppCompatActivty, but in addition to the application panel, AppCompat also provides support libraries that allow you to add material design to your application, starting from API level 7 on Android.
Unless you have a specific reason not to use AppCompat, all your actions should extend AppCompatActivty to model the Material application.
source
share