What is the correct way to get layout inflater in Android?
use outside of your activity LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE ); Within your activity LayoutInflater inflater = getLayoutInflater(); Check this If you open up the Android source you can see that the LayoutInflator.from method looks like so: /** * Obtains the LayoutInflater from the given context. */ public static LayoutInflater from(Context context) { LayoutInflater … Read more