void WebViewImpl::loadFile(const std::string &fileName) {
     auto fullPath = getUrlStringByFileName(fileName);
     JniHelper::callStaticVoidMethod(className, "loadFile", _viewTag, fullPath);
 }
Exemple #2
0
void CAWebViewImpl::loadFile(const std::string &fileName) {
	std::string fullPath = getUrlStringByFileName(fileName);
	loadFileJNI(_viewTag, fullPath);
}