Frage

I am trying to include a new layout on an event. For that I am using LayoutInflater in That event listener. But the problem is, LayoutInflater.inflate() function expect its parameters to be (Int) ResourceId, ViewGroup. I am unable to figure out what to use as ViewGroup in the event listener. this refers to that event listener. parent and item are both views, not ViewGroups. Please help.

War es hilfreich?

Lösung

If you're attaching it to your activity, use that. If, however, you want a floating view, make your call as follows:

View view = inflater.inflate(resourceId, null, false);

This will create it and allow you to add it as a view to whatever you please.

Andere Tipps

Have a look at this article about Layout inflation. It gives a great overview about what params to use in what situations.

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