inflate vs findViewById
- by Cedric
Hi all,
Suppose I have a simple layout xml like the following:
button.xml:
Are there any differences in the following calls? and which one should i use?
button = (Button) getLayoutInflater().inflate(R.layout.button, null);
and
View v = getLayoutInflater().inflate(R.layout.button, null);
button = (Button) v.findViewById(R.id.button01);