Reputation: 2553
My app targets API 14+. If I want material design in my PreferenceFragment, do I need to use PreferenceFragmentCompat or it is still possible with PreferenceFragment?
Upvotes: 4
Views: 568
Reputation: 2411
You should be fine using PreferenceFragment
. It is supported API 11+ so you should be fine.
Upvotes: 1