I was using Android 4.0.3+JQM+Phonegap without having troubles. Yesterday I tested on Android 4.1 and found that those dynamically generated ListView would sometimes give me duplicated results. For example, I use the following code to generate a ListView to show today's date:
<ul data-role="listview" data-inset="true" data-theme="c"
data-divider-theme="d" id="todayvalue">
</ul>
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
var today = new Date();
var dayofmonth = today.getDate();
var dayofweek = today.getDay();
var year = today.getFullYear();
var month = today.getMonth();
var myDays= ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"];
var m_names = ["January", "February", "March",
"April", "May", "June", "July", "August", "September",
"October", "November", "December"];
$('#todayvalue').append('<li>Today is '+ myDays[dayofweek]+ ', '+year+'-'+m_names[month]+'-'+dayofmonth+'</li>');
$('#todayvalue').listview('refresh');
}
It used to have no problem at all. But now it would generate two identical rows.
Whom to blame?
Update: I have uploaded the project to https://github.com/ysongfinance/520Toll.
After further debugging, I found that onDeviceReady() was called twice but one of them looks weird:
07-05 20:42:31.368: I/Web Console(825): ########in OndeviceReady at file:///android_asset/www/js/updatetoll.js:4 07-05 20:42:31.488: I/Web Console(825): ########in OndeviceReady at null:4
Look at the second call "in OndeviceReady at null", what does that "null" suppose to mean?
devicereadyis being called multiple times or only once. also you can use the people.apache.org/~pmuellr/weinre/docs/latest to debug the generated page – dhaval Jun 29 '12 at 20:57<script src="js/updatetoll.js"></script>in the<head>tag and it fires only once, i will post the answer with solution – dhaval Jul 7 '12 at 5:17