appView は cordovaActivity.appVeiw DownloadListener は webkit.DownloadListener シナリオでも Crosswalk を使用しています。
DownloadListener dl = new DownloadListener() {
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimetype,
long contentLength) {
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
finish();
}
};
appView.setDownloadListener(dl);
コンパイル中にエラーが発生します
sample.java:###: error: cannot find symbol
[javac] appView.setDownloadListener(dl);
[javac] ^
[javac] symbol: method setDownloadListener(DownloadListener)
[javac] location: variable appView of type CordovaWebView
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] 1 error
この問題を解決する方法はありますか?