You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use conductor togethor with anvil in my project.
here is my base Controller:
public abstract class BaseController extends Controller implements Anvil.Renderable
{ @OverRide
protected void onAttach(@nonnull View view) {
super.onAttach(view);
Anvil.mount(view, this);
}
}
and i have a home controller which use viewpager as its main content.
at first everything works well.buf after pressing the home button,and return back ,the viewpager's content disapears.
The text was updated successfully, but these errors were encountered:
I have same problem with conductor. I have created new RenderableView inside method 'onCreateView' of a Controller. When i push this new controller, the layout is built but, at the end of transition animation, it disappears.
Instead It works if i create a new RenderrableView from xml file.
I use conductor togethor with anvil in my project.
here is my base Controller:
public abstract class BaseController extends Controller implements Anvil.Renderable
{
@OverRide
protected void onAttach(@nonnull View view) {
super.onAttach(view);
Anvil.mount(view, this);
}
}
and i have a home controller which use viewpager as its main content.
at first everything works well.buf after pressing the home button,and return back ,the viewpager's content disapears.
The text was updated successfully, but these errors were encountered: