Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to android development and keep coming across references to Inflating views from a layout xml file. I googled and searched the development guide but still wasn't able to pick up a sense for what it means. If someone could provide a very simple example, it'd be much appreciated.

share|improve this question

2 Answers

up vote 54 down vote accepted

When you write an XML layout, it will be inflated by the Android OS which basically means that it will be rendered. Let's call that implicit inflation (the OS will inflate the view for you). For instance:

class Name extends Activity{
    public void onCreate(){
         // the OS will inflate the your_layout.xml
         // file and use it for this activity
         setContentView(R.layout.your_layout);
    }
}

You can also inflate views explicitly by using the LayoutInflater. In that case you have to:

  1. Get an instance of the LayoutInflater
  2. Specify the XML to inflate
  3. Use the returned View

For instance:

LayoutInflater inflater = LayoutInflater.from(YourActivity.this); // 1
View theInflatedView = inflater.inflate(R.layout.your_layout, null); // 2 and 3
share|improve this answer
3  
if inflate = rendering, then what is the use of onDraw(), precisely ? – sylvainulg Jul 19 '12 at 9:44
@sylvainulg, The R.id.view is used to change the attributes of the xml element and inflate can do the same. inflating is particularly useful in custom views. To inflate the entire xml file, the familiar setContentView of Activity class is used. A View must inflate each View manually using LayoutInflater object.inflate(). An Activity has a Life Cycle. A View has a draw cycle instead. inflater is particulary useful with custom view instead of using predifiend layout in XML file. – Sree Rama Apr 27 at 6:06

"Inflating" a view means taking the layout XML, creating the views specified within and then adding those views to the parent ViewGroup. When you call setContentView(), it attaches the views it creates from reading the XML to the activity. You can also use LayoutInflater to add views to another ViewGroup, which can be a useful tool in a lot of circumstances.

share|improve this answer
2  
that sounds like a much more accurate description to me. – sylvainulg Jul 19 '12 at 9:45

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.