[ 
https://issues.apache.org/jira/browse/CB-5201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13805495#comment-13805495
 ] 

Vunda Von commented on CB-5201:
-------------------------------

When you say target 3.0, do you mean give targetSdkVersion a value of 11? 
(http://en.wikipedia.org/wiki/Android_version_history#Android_3.0_Honeycomb_.28API_level_11.29)

> Scrolling produces artifacts on android
> ---------------------------------------
>
>                 Key: CB-5201
>                 URL: https://issues.apache.org/jira/browse/CB-5201
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Android
>         Environment: Android Galaxy S4 Active, 4.2.2, Cordova 3.1 cli, 
> android:hardwareAccelerated="true"
>            Reporter: Vunda Von
>             Fix For: 3.1.0
>
>
> Real simple example here with a long list of items.  As you scroll, you'll 
> notice that the items are blank at either end you are scrolling towards.  On 
> a larger list with pictures and text, you can see so much tearing and 
> "tiling" as you scroll.  This does not happen in chrome web browser, only 
> cordova apps.
> {code}
> <!DOCTYPE html>
> <html>
> <head>
>   <title>Foo</title>
> </head>
> <body>
>  <div>Header</div>
>  <ul id="foo" style="height:300px; overflow:auto;">
>  </ul>
>  <div>Footer</div>
>    <script>
>     for(var i=0; i < 1000; i++){
>     var foo = document.createElement('li');
>     foo.innerHTML = i;
>     document.getElementById('foo').appendChild(foo);
>     }
>   </script>
> </body>
> </html>
> {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to