|
@@ -18,6 +18,11 @@ public class TopBarBackgroundViewController extends ViewController<TopBarBackgro
|
18
|
18
|
this.viewCreator = viewCreator;
|
19
|
19
|
}
|
20
|
20
|
|
|
21
|
+ public TopBarBackgroundViewController(TopBarBackgroundViewController topBarBackgroundViewController) {
|
|
22
|
+ super(topBarBackgroundViewController.getActivity(), CompatUtils.generateViewId() + "", new Options());
|
|
23
|
+ this.viewCreator = topBarBackgroundViewController.viewCreator;
|
|
24
|
+ }
|
|
25
|
+
|
21
|
26
|
@Override
|
22
|
27
|
protected TopBarBackgroundView createView() {
|
23
|
28
|
return viewCreator.create(getActivity(), getId(), component);
|