How to Get a Layout Inflater Given a Context? How to Get a Layout Inflater Given a Context? android android

How to Get a Layout Inflater Given a Context?


You can use the static from() method from the LayoutInflater class:

 LayoutInflater li = LayoutInflater.from(context);


You can also use this code to get LayoutInflater:

LayoutInflater li = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)