I\'m trying to display settings in an Android app using a PreferenceFragment from the android.support.v14.preference
library. However, when I try to open the pr
Comment out your onCreateView()
method.
Or, chain to the superclass implementation of onCreateView()
and embed its response in your own wrapper, if for some reason you want additional stuff around the stock PreferenceFragment
UI.
PreferenceFragment
probably is expecting its onCreateView()
to create the RecyclerView
that is missing per your stack trace.