0
It is possible to inflate a layout (I will call A) that has its full xml inside a View or Framelayout that is contained in another layout (xml)?
For example, the screen mounted through the layout A would be delimited by the layout View B. I know there is the option to make a include, but this is not the goal.
I do not know it was very clear, but there is the
ViewStub
that is nothing more than ainclude
dynamic. You can define theresource
at runtime and may not even be inflated if applicable. Could put aViewStub
within theView
who is on B and inflate her with A.– Wakim
@Wakim I had forgotten the Viewstub. I will check with her if I can accomplish what I wish.
– Arubu