i want to fuse app integration with android.
so i downloaded example code from this site(https://www.fusetools.com/examples/running-app)
and i edit fuse code like below
<App>
<ExportedViews>
<Panel ux:Template="MyView">
<iOS.StatusBarConfig Style="Dark" />
<Android.StatusBarConfig Color="#000" />
<Router ux:Name="router" />
<DockPanel>
<StatusBarBackground Dock="Top" />
<NavBar ux:Name="navBar" Dock="Top" />
<Navigator DefaultPath="home">
<HomePage ux:Name="home" router="router" navBar="navBar" />
<ActivityPage ux:Name="activity" router="router" navBar="navBar" />
</Navigator>
<BottomBar Dock="Bottom" />
<BottomBarBackground Dock="Bottom" />
</DockPanel>
</Panel>
</ExportedViews>
</App>
i get arr file and copy to my android project
and i write android code like below
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ViewHandle MyView = ExportedViews.instantiate("MyView");
android.view.View nativeView = MyView.getView();
RelativeLayout parent = (RelativeLayout) findViewById(R.id.main);
nativeView.setLayoutParams(new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT));
parent.addView(nativeView);
}
}
but, my result is not good like below
can , i export all thing include resource(like image)??
and how can i make my android app perfect like fuse app
thanks