When I change the /examples/mobile/scrollview/index.html to use the cdn version of kendo.all.min.js it works perfectly.
The online demos use this js file and they work perfectly on my HTC Wildfire S. The examples that come with the KendoUI Mobile trial download use kendo.mobile.min.js and this causes the problem. I tried using the cdn version of kendo.mobile.min.js but it has the same problem. It only works when I use the cdn version of kendo.all.min.js which is the same file that your online demos use.
The fix
In the example html files replace
<script src="../../../js/kendo.mobile.min.js"></script>
with :
<script src="http://cdn.kendostatic.com/2012.1.322/js/kendo.all.min.js"></script>
Here's the original with the problem I described :
http://www.captainsjob.com/test/kendouimobile/examples/mobile/scrollview/index.html
Here's a version that uses the cdn :
http://www.captainsjob.com/test/kendouimobile/examples/mobile/scrollview/indexcdn.html
I'm glad it's working now KendoUI Mobile is looking brilliant.
Thanks
Gareth
ps: the examples already use the data-role="page" attribute and I can see the widths of the .photo divs change as I resize the window so there's no need to set the width anymore you are right.