i am writing a custom implementation of a ListAdapter.

In its constructor, i'm taking in a Context, a resource ID (i.e. R.id.xxx representing the layout file), and a list and a map (these contain the data).

Now, the problem is that i will need a LayoutInflater to get the View object which is in the separate layout XML file.

How can i get hold of the LayoutInflater given only the Context?

Now, why i think this is possible, is that this is quite similar to what is being passed in to the constructor of an ArrayAdapter (context, resource, textViewResourceId, data array), and i figure the ArrayAdapter also has to make use of a LayoutInflater given only a Context.

But how can it be done?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 33 down vote accepted

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

 LayoutInflater li = LayoutInflater.from(context);
link|improve this answer
Thanks! i was trying to find Context.getSomething().getAnotherThing().getLayoutInflater() ! – Edwin Lee Feb 6 '10 at 5:59
This is the only method that worked for me. Every other one that I've tried so far threw an exception. – num1 Mar 12 '11 at 0:21
feedback

You can also use this code to get LayoutInflater:

LayoutInflater li = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)
link|improve this answer
2  
What's the difference between LayoutInflater.from(Context ctx) and this getSustemService(...) ? – Seymour Cakes Mar 20 at 10:40
1  
+1, for nice question, in implement of method LayoutInflater.from(context) also call context.getSystemService() to get LayoutInflater Service Provider from System Manager. So may be have a litter difference in call stack. – nguyendat Mar 20 at 10:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.