Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class FacebookTestActivity extends DroidGap {
  2. /** Called when the activity is first created. */
  3. @Override
  4. public void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. super.loadUrl("file:///android_asset/www/index.html");
  7. }
  8. }
  9.  
  10. this.cordova.getThreadPool().execute(new Runnable() {
  11. @Override
  12. public void run() {
  13.  
  14. super.loadUrl("file:///android_asset/www/index.html");
  15. }
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement