When I created a new activity, it extends ActionBarActivity but it's deprecated. At that moment, I have two options: 1) Used Activity and android:Theme.Material in my style like that : <style name="AppTheme" parent="android:Theme.Material"> Or 2) Used AppCompatActivity and Theme.AppCompat : <style name="AppTheme" parent="Theme.AppCompat"> So my question is, what is better between Activity and AppC
