I am developing a hybrid application with angularJS and ionic. All the screens are html. After login user will pick some actions in the left panel and action screen will be displayed in the right panel. It is working fine in iOS. Due to some deign issues we decided to go with native for action panel and action screens in android. But still we have a html5 screen for a specific action menu item for android (simple HTML5 form). My problem with android is:
I am using Android fragment and Cordova web view to load the HTML5 action screen for the specific action xx. But the screen is loaded without styles and other angular/ionic stuff. (using cordovawebview.loadUrl())
Because user is already logged in, app should show the action screen with all styles and JS applied. How do I do that ?