1

Me and my friend creating a location based app. We need to make the app smooth. We're using crosswalk, Intel app framework and Cordova. Will support android 4.0 and up. Can we rely on Cordova entirely, or do we need to implement the "Cordova webview inside native app method?"

  • I guess it depends on your specifications. I just build an app with the intel app framework and it runs smoothly. I discovered that if you load a page with a list containing many items it will take some time to load them. – TheMassassian Nov 27 '14 at 22:45
  • So i gotta skip the -li- and -ul- tags? – user4301704 Nov 28 '14 at 06:16
  • no, just don't put hundreds of -li- inside the -ul-, load 20-30 and when the user reach the top-bottom, load more and destroy others. – jcesarmobile Nov 28 '14 at 07:51
  • and if you really want to load that many, you can load them with display: none and make them visible with a timeout or using infinite scroll – TheMassassian Nov 28 '14 at 11:50
  • Im just worrying if the ui will be smooth enough, so as not to give the user the feeling 'hey! Somethings wrong with this app' – user4301704 Nov 28 '14 at 21:57
  • Switched to ionic framework. The community is more responsive and helpful – user4301704 Nov 29 '14 at 18:10

1 Answers1

0
overflow-y: scroll;
-webkit-overflow-scrolling: touch;

Use these css property in scrollable events...

Hari Narayanan
  • 754
  • 1
  • 12
  • 36