cordova-android/framework/src/com/phonegap/DroidGap.java

640 lines
21 KiB
Java
Raw Normal View History

package com.phonegap;
2009-04-02 07:56:43 +08:00
/* License (MIT)
* Copyright (c) 2008 Nitobi
* website: http://phonegap.com
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* Software), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import java.io.File;
import com.phonegap.api.Command;
import com.phonegap.api.CommandManager;
2009-04-02 07:56:43 +08:00
import android.app.Activity;
import android.app.AlertDialog;
import android.content.ContentResolver;
2009-04-02 07:56:43 +08:00
import android.content.Context;
2009-12-17 03:09:32 +08:00
import android.content.DialogInterface;
2009-07-18 07:23:18 +08:00
import android.content.Intent;
2009-04-02 07:56:43 +08:00
import android.content.res.Configuration;
import android.graphics.Bitmap;
2009-11-25 08:51:23 +08:00
import android.graphics.Color;
import android.net.Uri;
import android.os.AsyncTask;
2009-04-02 07:56:43 +08:00
import android.os.Bundle;
import android.os.Environment;
2009-04-02 07:56:43 +08:00
import android.util.Log;
2009-12-17 04:50:08 +08:00
import android.view.KeyEvent;
2009-11-25 08:51:23 +08:00
import android.view.ViewGroup;
2009-04-02 07:56:43 +08:00
import android.view.Window;
import android.view.WindowManager;
import android.webkit.JsResult;
import android.webkit.WebChromeClient;
2009-11-10 09:22:36 +08:00
import android.webkit.WebSettings;
import android.webkit.WebStorage;
2009-04-02 07:56:43 +08:00
import android.webkit.WebView;
import android.webkit.WebViewClient;
2010-07-08 06:18:14 +08:00
import android.webkit.GeolocationPermissions.Callback;
import android.webkit.WebSettings.LayoutAlgorithm;
import android.widget.ImageView;
2009-11-25 08:51:23 +08:00
import android.widget.LinearLayout;
import android.os.Build.*;
import android.provider.MediaStore;
2009-04-02 07:56:43 +08:00
public class DroidGap extends Activity {
2009-04-02 07:56:43 +08:00
private static final String LOG_TAG = "DroidGap";
2009-11-26 05:27:57 +08:00
protected WebView appView;
protected ImageView splashScreen;
private LinearLayout root;
2009-11-25 08:51:23 +08:00
private Device gap;
private GeoBroker geo;
private AccelListener accel;
private CameraLauncher launcher;
2009-11-03 07:43:09 +08:00
private ContactManager mContacts;
2009-09-12 05:30:24 +08:00
private FileUtils fs;
2009-11-04 03:54:30 +08:00
private NetworkManager netMan;
2009-11-19 03:11:05 +08:00
private CompassListener mCompass;
2009-12-09 06:08:48 +08:00
private Storage cupcakeStorage;
2010-02-25 08:18:35 +08:00
private CryptoHandler crypto;
private BrowserKey mKey;
private AudioHandler audio;
private CallbackServer callbackServer;
private CommandManager commandManager;
private Uri imageUri;
private String url; // The initial URL for our app
private String baseUrl; // The base of the initial URL for our app
private boolean resumeState = false; // Track if onResume() has been called
2009-04-02 07:56:43 +08:00
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
2009-04-02 07:56:43 +08:00
getWindow().requestFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
2009-11-25 08:51:23 +08:00
// This builds the view. We could probably get away with NOT having a LinearLayout, but I like having a bucket!
2009-11-25 08:51:23 +08:00
root = new LinearLayout(this);
root.setOrientation(LinearLayout.VERTICAL);
root.setBackgroundColor(Color.BLACK);
root.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT, 0.0F));
2010-08-26 13:52:37 +08:00
/*
splashScreen = new ImageView(this);
splashScreen.setLayoutParams(new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT,
1.0F));
splashScreen.setImageResource(R.drawable.splash);
2010-08-26 13:52:37 +08:00
root.addView(splashScreen);
*/
initWebView();
2010-08-18 02:26:39 +08:00
root.addView(appView);
setContentView(root);
}
private void initWebView() {
appView = new WebView(DroidGap.this);
appView.setLayoutParams(new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT,
1.0F));
WebViewReflect.checkCompatibility();
if (android.os.Build.VERSION.RELEASE.startsWith("2.")) {
appView.setWebChromeClient(new EclairClient(DroidGap.this));
} else {
appView.setWebChromeClient(new GapClient(DroidGap.this));
2009-12-09 06:08:48 +08:00
}
appView.setWebViewClient(new GapViewClient(this));
appView.setInitialScale(100);
2009-12-04 02:47:41 +08:00
appView.setVerticalScrollBarEnabled(false);
2010-08-18 02:26:39 +08:00
appView.requestFocusFromTouch();
2009-11-10 09:22:36 +08:00
WebSettings settings = appView.getSettings();
settings.setJavaScriptEnabled(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
settings.setLayoutAlgorithm(LayoutAlgorithm.NORMAL);
Package pack = this.getClass().getPackage();
String appPackage = pack.getName();
WebViewReflect.setStorage(settings, true, "/data/data/" + appPackage + "/app_database/");
2010-03-03 03:14:20 +08:00
// Turn on DOM storage!
WebViewReflect.setDomStorage(settings);
// Turn off native geolocation object in browser - we use our own :)
2010-07-08 06:18:14 +08:00
WebViewReflect.setGeolocationEnabled(settings, true);
// Bind the appView object to the gap class methods
2009-04-02 07:56:43 +08:00
bindBrowser(appView);
if(cupcakeStorage != null)
cupcakeStorage.setStorage(appPackage);
// Try firing the onNativeReady event in JS. If it fails because the JS is
// not loaded yet then just set a flag so that the onNativeReady can be fired
// from the JS side when the JS gets to that code.
appView.loadUrl("javascript:try{PhoneGap.onNativeReady.fire();}catch(e){_nativeReady = true;}");
2010-07-08 06:18:14 +08:00
}
2009-04-02 07:56:43 +08:00
@Override
/**
* Called by the system when the device configuration changes while your activity is running.
*
* @param Configuration newConfig
*/
2009-04-02 07:56:43 +08:00
public void onConfigurationChanged(Configuration newConfig) {
//don't reload the current page when the orientation is changed
super.onConfigurationChanged(newConfig);
2009-04-02 07:56:43 +08:00
}
@Override
/**
* Called when the system is about to start resuming a previous activity.
*/
protected void onPause(){
super.onPause();
// Send pause event to JavaScript
if (this.resumeState) {
appView.loadUrl("javascript:try{PhoneGap.onPause.fire();}catch(e){};");
this.resumeState = false;
}
// Pause JavaScript timers (including setInterval)
appView.pauseTimers();
}
@Override
/**
* Called when the activity will start interacting with the user.
*/
protected void onResume(){
super.onResume();
// Send resume event to JavaScript
if (!this.resumeState) {
appView.loadUrl("javascript:try{PhoneGap.onResume.fire();}catch(e){};");
this.resumeState = true;
}
// Resume JavaScript timers (including setInterval)
appView.resumeTimers();
}
2009-04-02 07:56:43 +08:00
@Override
/**
* The final call you receive before your activity is destroyed.
*/
public void onDestroy() {
super.onDestroy();
// Make sure pause event is sent if onPause hasn't been called before onDestroy
if (this.resumeState) {
appView.loadUrl("javascript:try{PhoneGap.onPause.fire();}catch(e){};");
this.resumeState = false;
}
// Load blank page so that JavaScript onunload is called
appView.loadUrl("about:blank");
// Clean up objects
if (accel != null) {
accel.destroy();
}
if (launcher != null) {
}
if (mContacts != null) {
}
if (fs != null) {
}
if (netMan != null) {
}
if (mCompass != null) {
mCompass.destroy();
}
if (crypto != null) {
}
if (mKey != null) {
}
if (audio != null) {
}
if (callbackServer != null) {
callbackServer.destroy();
}
}
2009-04-02 07:56:43 +08:00
private void bindBrowser(WebView appView)
{
callbackServer = new CallbackServer();
commandManager = new CommandManager(appView, this);
gap = new Device(appView, this);
accel = new AccelListener(appView, this);
2009-08-01 05:16:02 +08:00
launcher = new CameraLauncher(appView, this);
mContacts = new ContactManager(appView, this);
2009-10-29 04:43:39 +08:00
fs = new FileUtils(appView);
netMan = new NetworkManager(appView, this);
mCompass = new CompassListener(appView, this);
2010-02-25 08:18:35 +08:00
crypto = new CryptoHandler(appView);
mKey = new BrowserKey(appView, this);
audio = new AudioHandler(appView, this);
2009-09-12 05:30:24 +08:00
2009-04-02 07:56:43 +08:00
// This creates the new javascript interfaces for PhoneGap
appView.addJavascriptInterface(commandManager, "CommandManager");
2009-08-01 06:17:36 +08:00
appView.addJavascriptInterface(gap, "DroidGap");
2009-04-02 07:56:43 +08:00
appView.addJavascriptInterface(accel, "Accel");
2009-07-31 08:12:20 +08:00
appView.addJavascriptInterface(launcher, "GapCam");
2009-11-03 07:43:09 +08:00
appView.addJavascriptInterface(mContacts, "ContactHook");
2009-09-12 05:30:24 +08:00
appView.addJavascriptInterface(fs, "FileUtil");
2009-11-04 03:54:30 +08:00
appView.addJavascriptInterface(netMan, "NetworkManager");
2009-11-19 03:11:05 +08:00
appView.addJavascriptInterface(mCompass, "CompassHook");
2010-02-25 08:18:35 +08:00
appView.addJavascriptInterface(crypto, "GapCrypto");
appView.addJavascriptInterface(mKey, "BackButton");
appView.addJavascriptInterface(audio, "GapAudio");
appView.addJavascriptInterface(callbackServer, "CallbackServer");
appView.addJavascriptInterface(new SplashScreen(this), "SplashScreen");
if (android.os.Build.VERSION.RELEASE.startsWith("1."))
2009-12-09 06:08:48 +08:00
{
cupcakeStorage = new Storage(appView, this);
geo = new GeoBroker(appView, this);
2009-12-09 06:08:48 +08:00
appView.addJavascriptInterface(cupcakeStorage, "droidStorage");
appView.addJavascriptInterface(geo, "Geo");
2009-12-09 06:08:48 +08:00
}
2009-04-02 07:56:43 +08:00
}
2009-11-26 05:27:57 +08:00
/**
* Load the url into the webview.
*
* @param url
*/
public void loadUrl(final String url) {
this.url = url;
int i = url.lastIndexOf('/');
if (i > 0) {
this.baseUrl = url.substring(0, i);
}
else {
this.baseUrl = this.url;
}
this.runOnUiThread(new Runnable() {
public void run() {
DroidGap.this.appView.loadUrl(url);
}
});
2009-11-25 08:51:23 +08:00
}
/**
* Send JavaScript statement back to JavaScript.
*
* @param message
*/
public void sendJavascript(String statement) {
this.callbackServer.sendJavascript(statement);
}
/**
* Get the port that the callback server is listening on.
*
* @return
*/
public int getPort() {
return this.callbackServer.getPort();
}
/**
* Provides a hook for calling "alert" from javascript. Useful for
* debugging your javascript.
*/
public class GapClient extends WebChromeClient {
Context mCtx;
public GapClient(Context ctx)
{
mCtx = ctx;
}
@Override
public boolean onJsAlert(WebView view, String url, String message, JsResult result) {
Log.d(LOG_TAG, message);
// This shows the dialog box. This can be commented out for dev
AlertDialog.Builder alertBldr = new AlertDialog.Builder(mCtx);
2009-12-17 03:09:32 +08:00
GapOKDialog okHook = new GapOKDialog();
GapCancelDialog cancelHook = new GapCancelDialog();
alertBldr.setMessage(message);
alertBldr.setTitle("Alert");
2009-12-17 03:09:32 +08:00
alertBldr.setCancelable(true);
alertBldr.setPositiveButton("OK", okHook);
alertBldr.setNegativeButton("Cancel", cancelHook);
alertBldr.show();
result.confirm();
return true;
}
2009-12-17 03:09:32 +08:00
/*
* This is the Code for the OK Button
*/
public class GapOKDialog implements DialogInterface.OnClickListener {
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
dialog.dismiss();
}
}
public class GapCancelDialog implements DialogInterface.OnClickListener {
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
dialog.dismiss();
}
}
}
public final class EclairClient extends GapClient
{
private String TAG = "PhoneGapLog";
private long MAX_QUOTA = 100 * 1024 * 1024;
public EclairClient(Context ctx) {
super(ctx);
// TODO Auto-generated constructor stub
}
public void onExceededDatabaseQuota(String url, String databaseIdentifier, long currentQuota, long estimatedSize,
long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater)
{
Log.d(TAG, "event raised onExceededDatabaseQuota estimatedSize: " + Long.toString(estimatedSize) + " currentQuota: " + Long.toString(currentQuota) + " totalUsedQuota: " + Long.toString(totalUsedQuota));
if( estimatedSize < MAX_QUOTA)
{
//increase for 1Mb
long newQuota = estimatedSize;
Log.d(TAG, "calling quotaUpdater.updateQuota newQuota: " + Long.toString(newQuota) );
quotaUpdater.updateQuota(newQuota);
}
else
{
// Set the quota to whatever it is and force an error
// TODO: get docs on how to handle this properly
quotaUpdater.updateQuota(currentQuota);
}
}
// console.log in api level 7: http://developer.android.com/guide/developing/debug-tasks.html
public void onConsoleMessage(String message, int lineNumber, String sourceID)
{
// This is a kludgy hack!!!!
Log.d(TAG, sourceID + ": Line " + Integer.toString(lineNumber) + " : " + message);
}
2010-07-08 06:18:14 +08:00
@Override
public void onGeolocationPermissionsShowPrompt(String origin, Callback callback) {
// TODO Auto-generated method stub
super.onGeolocationPermissionsShowPrompt(origin, callback);
callback.invoke(origin, true, false);
}
}
public class GapViewClient extends WebViewClient {
DroidGap mCtx;
/**
* Constructor.
*
* @param ctx
*/
public GapViewClient(DroidGap ctx) {
mCtx = ctx;
}
/**
* Give the host application a chance to take over the control when a new url
* is about to be loaded in the current WebView.
*
* @param view The WebView that is initiating the callback.
* @param url The url to be loaded.
* @return true to override, false for default behavior
*/
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
// Make sure pause event is sent if loading a new url
if (mCtx.resumeState) {
appView.loadUrl("javascript:try{PhoneGap.onPause.fire();}catch(e){};");
mCtx.resumeState = false;
}
// If dialing phone (tel:5551212)
if (url.startsWith(WebView.SCHEME_TEL)) {
try {
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse(url));
startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
System.out.println("Error dialing "+url+": "+ e.toString());
}
return true;
}
// If displaying map (geo:0,0?q=address)
else if (url.startsWith(WebView.SCHEME_GEO)) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
System.out.println("Error showing map "+url+": "+ e.toString());
}
return true;
}
// If sending email (mailto:abc@corp.com)
else if (url.startsWith(WebView.SCHEME_MAILTO)) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
System.out.println("Error sending email "+url+": "+ e.toString());
}
return true;
}
// If sms:5551212
else if (url.startsWith("sms:")) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
intent.putExtra("address", url.substring(4));
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
System.out.println("Error sending sms "+url+":"+ e.toString());
}
return true;
}
// If http, https or file
else if (url.startsWith("http://") || url.startsWith("https://") || url.startsWith("file://")) {
int i = url.lastIndexOf('/');
String newBaseUrl = url;
if (i > 0) {
newBaseUrl = url.substring(0, i);
}
// If our app or file:, then load into our webview
if (url.startsWith("file://") || mCtx.baseUrl.equals(newBaseUrl)) {
appView.loadUrl(url);
}
// If not our application, let default viewer handle
else {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
System.out.println("Error loading url "+url+":"+ e.toString());
}
}
return true;
}
return false;
}
/**
* Notify the host application that a page has finished loading.
*
* @param view The webview initiating the callback.
* @param url The url of the page.
*/
@Override
public void onPageFinished (WebView view, String url) {
super.onPageFinished(view, url);
// Try firing the onNativeReady event in JS. If it fails because the JS is
// not loaded yet then just set a flag so that the onNativeReady can be fired
// from the JS side when the JS gets to that code.
appView.loadUrl("javascript:try{ PhoneGap.onNativeReady.fire();}catch(e){_nativeReady = true;}");
}
}
2009-12-17 04:50:08 +08:00
public boolean onKeyDown(int keyCode, KeyEvent event)
2010-08-26 13:32:31 +08:00
{
if (keyCode == KeyEvent.KEYCODE_BACK) {
if (mKey.isBound())
{
//We fire an event here!
appView.loadUrl("javascript:document.keyEvent.backTrigger()");
}
else
{
// only go back if the webview tells you that it is possible to go back
if(appView.canGoBack())
{
appView.goBack();
}
else // if you can't go back, invoke behavior of super class
{
return super.onKeyDown(keyCode, event);
}
}
2009-12-17 04:50:08 +08:00
}
if (keyCode == KeyEvent.KEYCODE_MENU)
{
// This is where we launch the menu
2009-12-18 05:21:13 +08:00
appView.loadUrl("javascript:keyEvent.menuTrigger()");
2009-12-17 04:50:08 +08:00
}
return false;
}
/**
* Removes the splash screen from root view and adds the WebView
*/
public void hideSplashScreen() {
root.removeView(splashScreen);
root.addView(appView);
}
2009-07-18 07:23:18 +08:00
// This is required to start the camera activity! It has to come from the previous activity
2010-06-05 06:21:57 +08:00
public void startCamera()
2009-07-18 07:23:18 +08:00
{
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
File photo = new File(Environment.getExternalStorageDirectory(), "Pic.jpg");
intent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photo));
imageUri = Uri.fromFile(photo);
startActivityForResult(intent, 0);
2009-07-18 07:23:18 +08:00
}
protected void onActivityResult(int requestCode, int resultCode, Intent intent)
{
super.onActivityResult(requestCode, resultCode, intent);
if (resultCode == Activity.RESULT_OK) {
Uri selectedImage = imageUri;
getContentResolver().notifyChange(selectedImage, null);
ContentResolver cr = getContentResolver();
Bitmap bitmap;
try {
bitmap = android.provider.MediaStore.Images.Media.getBitmap(cr, selectedImage);
launcher.processPicture(bitmap);
} catch (Exception e) {
launcher.failPicture("Did not complete!");
}
}
else
{
launcher.failPicture("Did not complete!");
}
}
2009-09-12 05:30:24 +08:00
}