In the onCreate() method, is there a way to reload URL? I am trying to reload URL every minute
public class AAPActivity extends DroidGap
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
loadUrl("file:///android_asset/www/index.html");
task = new TimerTask(){
public void run() {
handler.post(new Runnable() {
public void run() {
// Here instead of loadURL, is there a way to reload?
loadUrl("file:///android_asset/www/index.html");
}
});
}};
t.schedule(task, 0, 10000);
}
}
Thank you
As it is a Phonegap App you will probably use javascript. I found this:
on http://www.codingforums.com/archive/index.php/t-157966.html . Maybe that helps 😉