I noticed in the android browser that if you have content in a div
that overflows and the overflow is set to scroll then the page will
flash when you click a link on the page. If the browser is to software
mode or the overflow is set to hidden then there will not be any
flashing.. The page should not be flashing in any scenarios, So is
this a bug in the android browser? Or is my html wrong? see below for
a simple example.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="minimum-scale=1, maximum-scale=1">
<style type="text/css">
#test {
width:200px;
height:200px;
overflow-y: scroll;
overflow-x:hidden;
min-height: 200px;
max-height: 200px;
}
</style>
</head>
<body>
<a href="test.html">test</a>
<div id="test">
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
<p>as</p>
</div>
</body>
</html>
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en