I have 3 different pages and only the first one includes a little bit more logic and variables at the moment. When I am testing slider with my Nexus 7 I got this:
07-24 09:36:01.363: D/Cordova(10976):
onPageFinished(file:///android_asset/www/index.html#/android_asset/www/testSlider.html)
07-24 09:36:01.363: D/CordovaWebView(10976): >>> loadUrlNow()
07-24 09:36:01.363: D/DroidGap(10976): onMessage(onNativeReady,null)
07-24 09:36:01.363: D/DroidGap(10976):
onMessage(onPageFinished,file:///android_asset/www/index.html#/android_asset/www/testSlider.html)
07-24 09:36:17.463: D/dalvikvm(10976): GC_CONCURRENT freed 470K, 10%
free 8084K/8967K, paused 19ms+7ms, total 83ms
So is it about memory then or is there huge memory leak in jquery mobile slider? Can it be even possible, because I've got only 3 almost empty pages and there is the last one where is sliders (not working though), they are working in the browser, but not in nexus 7.
If somebody has implemented multi page app in phonegap + jqm + Android, could you pls tell me is that possible and if it is, how can I increase the amount of memory in jvm in Nexus or emulator or how to management memory usage in my app. I just inserted a couple of console-logs to slider to check is it working or not, but I just got that memory-line, not logs at all and like I said, it is working in browsers, but not in real device.
And the code is here
package com.mycordova.hellocordova;
import android.R;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.support.v4.app.NavUtils;
import org.apache.cordova.*;
public class HelloCordovaActivity extends DroidGap {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
}
}
<!DOCTYPE html>
<html>
<head>
<title>conditions</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script type="text/javascript">
function onload(){
$("#temperature").on("change", function(e){
var newTemp = $("#temperature").val();
console.log("newTempnewTempnewTempnewTemp---->" +newTemp)
$("#temp").val(newTemp);
});
}
</script>
</head>
<body onload="onload()">
<div data-role="page" data-theme="a">
<div data-role="header">
<h1>Conditions</h1>
</div>
<div data-role="fieldcontain">
<label for="temperature">Temperature22:</label>
<input type="range" name="temperature" id="temperature" value="15" min="-15" max="60" data-highlight="true" />
<label for="temp">Echo Temp</label>
<input type="text" value="" id="temp" />
</div>
</div>
</body>
</html>
And jumping from page to page is happening like that. Conditions-page is the problematic one!
<div data-role="footer" data-position="fixed">
<div data-role="navbar" style="font-size: -2">
<ul>
<li><a href="index.html" class="ui-btn-active">Index</a></li>
<li><a href="conditions.html" data-transition="pop"
data-direction="reverse">Conditions</a></li>
</ul>
</div>
</div>