I have a container app with several tabs, and I want to load fragment from another "plugin" app (another apk) to these tabs.
I found this Use external application fragment/activity inside application, and I successfully loaded my fragment to my container app, but the problem is, it uses local resources to inflate the view, i.e. the resources of the container app (the "main" app), instead of the app that actually implement the fragment (the "plugin" app).
How can I let it uses the resources from the "plugin" app to inflate my view?