android webview协议s,Android WebViews

To follow these instructions, make sure you have the latest Cordova

distribution. Download it from

cordova.apache.org and unzip its

Android package.

Navigate to the Android package's /framework directory and run

ant jar. It creates the Cordova .jar file, formed as

/framework/cordova-x.x.x.jar.

Copy the .jar file into the Android project's /libs directory.

Add the following to the application's /res/xml/main.xml file,

with the layout_height, layout_width and id modified to suit

the application:

android:id="@+id/tutorialView"

android:layout_width="match_parent"

android:layout_height="match_parent" />

Modify the activity so that it implements the CordovaInterface.

It should implement the included methods. You may wish to copy

them from /framework/src/org/apache/cordova/CordovaActivity.java,

or else implement them on your own. The following code fragment

shows a basic application that relies on the interface. Note how

the referenced view id matches the id attribute specified in the

XML fragment shown above:

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());

}

If the application needs to use the camera, implement the

following:

@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);

}

}

Finally, remember to add the thread pool, otherwise plugins

have no threads on which to run:

@Override

public ExecutorService getThreadPool() {

return threadPool;

}

Copy the application's HTML and JavaScript files to the Android

project's /assets/www directory.

Copy the config.xml file from /framework/res/xml to the

project's /res/xml directory.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值