Best way to get layout inflater?

189 Views Asked by At

I have just come across the getLayoutInflater() method, I have always used LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE); to get the layout inflater so I was just wondering what is the difference between these two? Is there a case where one of these will work and not the other ? Thanks

1

There are 1 best solutions below

2
On BEST ANSWER

For an Activity, both of those should give you the same LayoutInflater, but I would assume getLayoutInflater() is better because it simply grabs the LayoutInflater that is already cached in the Window given to the Activity.