I was struggling with using AppCompatActivity
and Activity
(and recently realized there is ActivityCompat
even) and things like Toolbar
vs ActionBar
etc. it feels like things using AppCompat
seem to be more stable. For example it works so much more smoothly with things like PreferenceFragment
.
On the other hand, as I understand the AppCompat
is mostly for supporting devices below APIv21 which not even supported by security patches today.
So, is there any reason to use AppCompat
in a new application? What is the future of AppCompat
? Is it a sliding window of versions or AppCompat
will be phased off in future?
Thanks!