Question

I'm trying to develop an android app and looking at various tutorials, it seems people are using setContentView as well as LayoutInflater at many places. What is the difference between these two and when should i use LayoutInflater instead of setContentView?

Was it helpful?

Solution

I think setContentView will set the specified layout as the layout of the Activity your are running, while LayoutInflater can be used in situations where you need to use a layout but not necessarily use that layout as the layout for the Activity itself.

For example you may want to inflate a custom layout for the listview's items, which has nothing to do with the layout of the Activity. In this case you will use a LayoutInflater.

OTHER TIPS

setContentView is for Activities, and LayoutInflater is used in Fragments.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top