Frage

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?

War es hilfreich?

Lösung

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.

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top