Marco Moretti
Marco Moretti

Reputation: 689

Scroll Div issue in cordova app

Hi i'm developing a cordova application for android and sometimes I have a scroll issue on a div with a table. The scroll has a strange logarithm movement. Someone knows how to solve it?

Upvotes: 1

Views: 771

Answers (2)

Ra_
Ra_

Reputation: 569

This issue might be caused by the Android emulator. Check out if that weird scrolling is also present on a real device. It should not.

In my case I used the emulator for the Nexus 5x and got that strange "logarithmic" scrolling. When running my the very same app on a real Nexus 5x everything is fine.

Upvotes: 0

Cordovaing
Cordovaing

Reputation: 301

Can you be more specific on how the "logarithm moviment" should be? I faced some problems with scrolls and tables in two different situations and I hope the following information can help you.

1 - Table out of devices width: Sometimes, when you build a table, some incompatible CSS should make it wider than main div width and generate a strange horizontal scroll. Try to review your involved CSS;

2 - Android Manifest: I noted that some devices (especially those running older versions of Android) may have some performance issues caused by a Manifest Configuration. Try to change "hardwareAccelerated" to FALSE

 <application android:hardwareAccelerated="false">

Hope it helps! Best regards!

Upvotes: 1

Related Questions