How to navigate to a cordova/ionic page in android fragment with all styles and scripts loaded?

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:

  • User logs in (HTML5 login screen)
  • Action screen displayed with left panel and right panel (native android)
  • User picks an action in the left, right panel displays the action screen. (native)
  • User picks a specific action xx in the left panel. Now show the HTML5 action screen in the right panel.

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 ?