more notes about making things work with phonegap

This commit is contained in:
Danny Yoo 2011-09-15 15:18:21 -04:00
parent 1bdabbeadd
commit b60c244a9b

View File

@ -25,3 +25,27 @@ One problem that's coming up is that the assets file isn't allowed to
have files larger than a megabyte. So I'm forced to split up the
files, after
all... (http://ponystyle.com/blog/2010/03/26/dealing-with-asset-compression-in-android-apps/)
Also, we need to bump utp the loadUrlTimeoutValue parameter to prevent
the browser from timing out from reading the files.
//////////////////////////////////////////////////////////////////////
package org.plt;
import android.os.Bundle;
import com.phonegap.*;
public class WhereAmI extends DroidGap
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
// setContentView(R.layout.main);
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
super.loadUrl("file:///android_asset/where-am-i.html");
}
}
//////////////////////////////////////////////////////////////////////