Android WebViews
協助下開始在科爾多瓦 1.9, CordovaActivity
,你可以使用科爾多瓦作為一個更大的本機 Android 應用程式中的一個元件。 Android 是指這種元件 CordovaWebView
。 新的基於科爾多瓦的應用程式從 1.9 起使用 CordovaWebView
作為其主要的視圖,無論是否遺留下來 CordovaActivity
使用方法。
如果你熟悉 Android 應用程式的開發,請閱讀 Android 平臺指南 》 嘗試前,包括 web 視圖開發科爾多瓦的應用程式。 它不是作者科爾多瓦 Android 應用程式的主要途徑。 這些指令是目前手動,但最終可能會實現自動化。
系統必備元件
科爾多瓦 1.9 或更大
Android SDK 更新到最新的 SDK
在 android 系統的專案中使用 CordovaWebView 的指南
cd
到/framework
並運行ant jar
打造科爾多瓦 jar。 它創建時所形成的.jar 檔cordova-x.x.x.jar
在/framework
目錄。科爾多瓦 jar 複製到您的 Android 專案
/libs
目錄。編輯您的應用程式的
main.xml
檔 (根據/res/xml
),看起來像下面這樣,與layout_height
,layout_width
和id
修改,以適合您的應用程式:<org.apache.cordova.CordovaWebView android:id="@+id/tutorialView" android:layout_width="match_parent" android:layout_height="match_parent" />
修改您的活動,使它實現了
CordovaInterface
。 您應該執行包括的方法。 您可能希望將它們從複製/framework/src/org/apache/cordova/CordovaActivity.java
,或執行這些靠你自己。 下面的代碼片段顯示了一個基本的應用程式,使用該介面。 請注意如何引用的視圖 id 匹配id
在上面所示的 XML 片段中指定的屬性:public class CordovaViewTestActivity extends Activity implements CordovaInterface { CordovaWebView cwv; /* Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); cwv = (CordovaWebView) findViewById(R.id.tutorialView); Config.init(this); cwv.loadUrl(Config.getStartUrl()); }
如果您使用的相機,你應該也可以實現這:
@Override
public void setActivityResultCallback(CordovaPlugin plugin) {
this.activityResultCallback = plugin;
}
/**
* Launch an activity for which you would like a result when it finished. When this activity exits,
* your onActivityResult() method is called.
*
* @param command The command object
* @param intent The intent to start
* @param requestCode The request code that is passed to callback to identify the activity
*/
public void startActivityForResult(CordovaPlugin command, Intent intent, int requestCode) {
this.activityResultCallback = command;
this.activityResultKeepRunning = this.keepRunning;
// If multitasking turned on, then disable it for activities that return results
if (command != null) {
this.keepRunning = false;
}
// Start activity
super.startActivityForResult(intent, requestCode);
}
@Override
/**
* Called when an activity you launched exits, giving you the requestCode you started it with,
* the resultCode it returned, and any additional data from it.
*
* @param requestCode The request code originally supplied to startActivityForResult(),
* allowing you to identify who this result came from.
* @param resultCode The integer result code returned by the child activity through its setResult().
* @param data An Intent, which can return result data to the caller (various data can be attached to Intent "extras").
*/
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
CordovaPlugin callback = this.activityResultCallback;
if (callback != null) {
callback.onActivityResult(requestCode, resultCode, intent);
}
}
最後,請記住,添加執行緒池,否則外掛程式有沒有線程上運行:
@Override
public ExecutorService getThreadPool() {
return threadPool;
}
將您的應用程式的 HTML 和 JavaScript 檔案複製到您的 Android 專案
/assets/www
目錄。複製
config.xml
從/framework/res/xml
到您的專案的/res/xml
目錄。