I recently decided to switch from
import android.preference.Preference;
to
import android.support.v7.preference.Preference;
and it seems that onCreateView() is no longer existing, is there something that replaces it? Originally I was overriding the method, but now I get an error instead because it doesn't exist anymore so it can't be overridden.
in the android.support.v7.preference.Preference
you need to use override the onBindViewHolder
, check this