Search code examples
androidandroid-preferences

What do I use in place of the removed onCreateView() method in android.support.v7.preference.Preference?


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.


Solution

  • in the android.support.v7.preference.Preference you need to use override the onBindViewHolder, check this