アプリケーションで Childbrowser プラグインを使用しようとしています。私のコードは次のとおりです。
ChildBrowser.prototype.showWebPage = function(url, options) {
options = options || {
showLocationBar: true,
locationBarAlign: "top"
};
//Code Runs up to this point
cordova.exec(this._onEvent, this._onError, "ChildBrowser", "showWebPage", [url, options]);
};
コードの最後の行は何もしません。エラーは発生していませんが、Web ページは表示されません。私はAndroid 2.3を使用しています。