Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm following that guide for implementing a custom preference. http://android-journey.blogspot.com/2010/01/for-almost-any-application-we-need-to.html. In the method

@Override
protected View onCreateView(ViewGroup parent){
   ...
} 

The guide creates the elements programmatically and then returns the view. I'd like retrieve the layout from a xml file. But the call getLayoutInflater() is not accesible there how can I retrieve a layout inflater for get the view stored in the file "progressbarpreference.xml"?

I have a static reference to the application Context available if needed

Thanks

share|improve this question
Have you registered for inflate service? – Nikola Despotoski Aug 12 '11 at 16:28

3 Answers

up vote 8 down vote accepted
LayoutInflater li = (LayoutInflater) ctx.getSystemService(Service.LAYOUT_INFLATER_SERVICE);

should do the trick (ctx is your application context in this case).

share|improve this answer

Use the static reference, suppose if it is context.

rowLayout = (LinearLayout) LayoutInflater.from(context).inflate(R.layout.progress_bar, parent, false);

where progress_bar is the id of the linear layout.

share|improve this answer
LayoutInflater inflater = LayoutInflater.from(this);
inflater.inflate(R.layout.yourcustomviewxml, layout);

Got this from a question I asked: How to pass AttributeSet to custom View Thanks Ian!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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