鴻蒙(HarmonyOS)-Fa應用中WebView的使用

Fa應用是支持WebView嵌入H5網頁的件炉,WebView提供在應用中集成Web頁面的能力,不過目前只支持Java模板的WebView。

WebView的使用方法

WebView派生于通用組件Component,可以像普通組件一樣進行使用览露。

方式一:

  1. 在layout目錄下的xml文件中創(chuàng)建WebView荧琼。
<ohos.agp.components.webengine.WebView
    ohos:id="$+id:webview"
    ohos:height="match_parent"
    ohos:width="match_parent">
</ohos.agp.components.webengine.WebView>

2.在MainAbility.java文件中,使用load方法加載Web頁面差牛。

WebView webView = (WebView) findComponentById(ResourceTable.Id_webview);
webView.getWebConfig() .setJavaScriptPermit(true);  // 如果網頁需要使用JavaScript命锄,增加此行;如何使用JavaScript下文有詳細介紹
final String url = EXAMPLE_URL; // EXAMPLE_URL由開發(fā)者自定義
webView.load(url);

方式二:

1.在ComponentContainer中創(chuàng)建WebView偏化。

WebView webView = new WebView(getContext());
webView.setWidth(ComponentContainer.LayoutConfig.MATCH_PARENT);
webView.setHeight(ComponentContainer.LayoutConfig.MATCH_PARENT);
webView.getWebConfig() .setJavaScriptPermit(true);  // 如果網頁需要使用JavaScript脐恩,增加此行;如何使用JavaScript下文有詳細介紹
addComponent(webView);

2.加載Web頁面侦讨。

final String url = EXAMPLE_URL; // EXAMPLE_URL由開發(fā)者自定義
webView.load(url);

定制網址加載行為

當Web頁面進行鏈接跳轉時驶冒,WebView默認會打開目標網址,通過以下方式可以定制該行為韵卤。

  1. 自定義WebAgent對象骗污。
private class ExampleWebAgent extends WebAgent {
    @Override
    public boolean isNeedLoadUrl(WebView webView, ResourceRequest request) {
        Uri uri = request.getRequestUrl();
        if (EXAMPLE_URL.equals(uri.getDecodedHost())) {
            // 由WebView通過默認方式處理
            return false;
        }

        // 增加開發(fā)者自定義邏輯
        return super.isNeedLoadUrl(webView, request);
    }
}

2.設置自定義WebAgent至WebView。

webView.setWebAgent(new ExampleWebAgent());

瀏覽網頁歷史記錄

  1. 通過getNavigator方法獲取Navigator對象沈条。
Navigator navigator = webView.getNavigator();

2.使用canGoBack()或canGoForward()檢查是否可以向后或向前瀏覽需忿,使用goBack()或goForward()向后或向前瀏覽。

if (navigator.canGoBack()) {
    navigator.goBack();
}
if (navigator.canGoForward()) {
    navigator.goForward();
}

使用JavaScript

通過以下方式,可以建立應用和頁面間的JavaScript調用屋厘。

  1. 通過WebConfig啟用JavaScript涕烧。
webView.getWebConfig().setJavaScriptPermit(true);

2.根據(jù)實際需要選擇調用方式。
注入回調對象到頁面內容汗洒,并在頁面中調用該對象议纯。

final String jsName = "JsCallbackToApp";
webview.addJsCallback(jsName, new JsCallback() {
    @Override
    public String onCallback(String msg) {
        // 增加自定義處理
        return "jsResult";
    }
});

在頁面內通過JavaScript代碼調用注入對象。

function callToApp() {
    if (window.JsCallbackToApp && window.JsCallbackToApp.call) {
       var result = JsCallbackToApp.call("message from web");
    }
}

在應用內調用頁面內的JavaScript方法仲翎。

webview.executeJs("javascript:callFuncInWeb()", new AsyncCallback<String>() {
    @Override
    public void onReceive(String msg) {
        // 在此確認返回結果
    }
});

觀測Web狀態(tài)

通過setWebAgent方法設置自定義WebAgent對象痹扇,以觀測頁面狀態(tài)變更等事件:

webview.setWebAgent(new WebAgent() {
    @Override
    public void onLoadingPage(WebView webView, String url, PixelMap favicon) {
        super.onLoadingPage(webView, url, favicon);
        // 頁面開始加載時自定義處理
    }

    @Override
    public void onPageLoaded(WebView webView, String url) {
        super.onPageLoaded(webView, url);
        // 頁面加載結束后自定義處理
    }

    @Override
    public void onLoadingContent(WebView webView, String url) {
        super.onLoadingContent(webView, url);
        // 加載資源時自定義處理
    }

    @Override
    public void onError(WebView webView, ResourceRequest request, ResourceError error) {
        super.onError(webView, request, error);
        // 發(fā)生錯誤時自定義處理
    }
});

觀測瀏覽事件

通過setBrowserAgent方法設置自定義BrowserAgent對象,以觀測JavaScript事件及通知等:

webview.setBrowserAgent(new BrowserAgent(this) {
    @Override
    public void onTitleUpdated(WebView webView, String title) {
        super.onTitleUpdated(webView, title);
        // 標題變更時自定義處理
    }

    @Override
    public void onProgressUpdated(WebView webView, int newProgress) {
        super.onProgressUpdated(webView, newProgress);
        // 加載進度變更時自定義處理
    }
});

加載資源文件或本地文件

出于安全考慮溯香,WebView不支持直接通過File協(xié)議加載資源文件或本地文件鲫构,如應用需實現(xiàn)相關業(yè)務,可參考如下方式實現(xiàn)玫坛。

方式一:通過processResourceRequest方法訪問文件

  1. 通過setWebAgent方法設置自定義WebAgent對象结笨,覆寫processResourceRequest方法。
webview.setWebAgent(new WebAgent() {
    @Override
    public ResourceResponse processResourceRequest(WebView webView, ResourceRequest request) {
        final String authority = "example.com";
        final String rawFile = "/rawfile/";
        final String local = "/local/";
        Uri requestUri = request.getRequestUrl();
        if (authority.equals(requestUri.getDecodedAuthority())) {
            String path = requestUri.getDecodedPath();
            if (TextTool.isNullOrEmpty(path)) {
                return super.processResourceRequest(webView, request);
            }
            if (path.startsWith(rawFile)) {
                // 根據(jù)自定義規(guī)則訪問資源文件
                String rawFilePath = "entry/resources/rawfile/" + path.replace(rawFile, "");
                String mimeType = URLConnection.guessContentTypeFromName(rawFilePath);
                try {
                    Resource resource = getResourceManager().getRawFileEntry(rawFilePath).openRawFile();
                    ResourceResponse response = new ResourceResponse(mimeType, resource, null);
                    return response;
                } catch (IOException e) {
                    HiLog.info(TAG, "open raw file failed");
                }
            }
            if (path.startsWith(local)) {
                // 根據(jù)自定義規(guī)則訪問本地文件
                String localFile = getContext().getFilesDir() + path.replace(local, "/");
                HiLog.info(TAG, "open local file " + localFile);
                File file = new File(localFile);
                if (!file.exists()) {
                    HiLog.info(TAG, "file not exists");
                    return super.processResourceRequest(webView, request);
                }
                String mimeType = URLConnection.guessContentTypeFromName(localFile);
                try {
                    InputStream inputStream = new FileInputStream(file);
                    ResourceResponse response = new ResourceResponse(mimeType, inputStream, null);
                    return response;
                } catch (IOException e) {
                    HiLog.info(TAG, "open local file failed");
                }
            }
        }
        return super.processResourceRequest(webView, request);
    }
});

2.加載資源文件或本地文件湿镀。

// 加載資源文件 resources/rawfile/example.html
webView.load("https://example.com/rawfile/example.html");

// 加載本地文件 /data/data/com.example.dataability/files/example.html
webView.load("https://example.com/local/example.html");

方式二:通過Data Ability訪問文件

1.創(chuàng)建Data Ability炕吸。

public class ExampleDataAbility extends Ability {
    private static final String PLACEHOLDER_RAW_FILE = "/rawfile/";
    private static final String PLACEHOLDER_LOCAL_FILE = "/local/";
    private static final String ENTRY_PATH_PREFIX = "entry/resources";

    @Override
    public RawFileDescriptor openRawFile(Uri uri, String mode) throws FileNotFoundException {
        final int splitChar = '/';
        if (uri == null) {
            throw new FileNotFoundException("Invalid Uri");
        }

        // path will be like /com.example.dataability/rawfile/example.html
        String path = uri.getEncodedPath();
        final int splitIndex = path.indexOf(splitChar, 1);
        if (splitIndex < 0) {
            throw new FileNotFoundException("Invalid Uri " + uri);
        }

        String targetPath = path.substring(splitIndex);
        if (targetPath.startsWith(PLACEHOLDER_RAW_FILE)) {
            // 根據(jù)自定義規(guī)則訪問資源文件
            try {
                return getResourceManager().getRawFileEntry(ENTRY_PATH_PREFIX + targetPath).openRawFileDescriptor();
            } catch (IOException e) {
                throw new FileNotFoundException("Not found support raw file at " + uri);
            }
        } else if (targetPath.startsWith(PLACEHOLDER_LOCAL_FILE)) {
            // 根據(jù)自定義規(guī)則訪問本地文件
            File file = new File(getContext().getFilesDir(), targetPath.replace(PLACEHOLDER_LOCAL_FILE, ""));
            if (!file.exists()) {
                throw new FileNotFoundException("Not found support local file at " + uri);
            }
            return getRawFileDescriptor(file, uri);
        } else {
            throw new FileNotFoundException("Not found support file at " + uri);
        }
    }

    private RawFileDescriptor getRawFileDescriptor(File file, Uri uri) throws FileNotFoundException {
        try {
            final FileDescriptor fileDescriptor = new FileInputStream(file).getFD();
            return new RawFileDescriptor() {
                @Override
                public FileDescriptor getFileDescriptor() {
                    return fileDescriptor;
                }

                @Override
                public long getFileSize() {
                    return -1;
                }

                @Override
                public long getStartPosition() {
                    return 0;
                }

                @Override
                public void close() throws IOException {
                }
            };
        } catch (IOException e) {
            throw new FileNotFoundException("Not found support local file at " + uri);
        }
    }
}

2.在config.json中注冊Data Ability。

{
"name": "com.example.webview.ExampleDataAbility",
"type": "data",
"uri": "dataability://com.example.dataability",
"metaData": {
    "customizeData": [
    {
        "name": "com.example.provider",
        "extra": "$profile:path"
    }
    ]
}
}

以及在resources/base/profile目錄新增path.xml:

<paths>
    <root-path name="root" path="/" />
</paths>

3.配置支持訪問Data Ability資源勉痴。

webConfig.setDataAbilityPermit(true);

4.通過dataability協(xié)議加載資源文件或本地文件赫模。

// 加載資源文件 resources/rawfile/example.html
webView.load("dataability://com.example.dataability/rawfile/example.html");

// 加載本地文件 /data/data/com.example.dataability/files/example.html
webView.load("dataability://com.example.dataability/local/example.html");

參考文檔

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市蒸矛,隨后出現(xiàn)的幾起案子瀑罗,更是在濱河造成了極大的恐慌,老刑警劉巖雏掠,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件斩祭,死亡現(xiàn)場離奇詭異,居然都是意外死亡乡话,警方通過查閱死者的電腦和手機摧玫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來绑青,“玉大人诬像,你說我怎么就攤上這事≌⒂ぃ” “怎么了颅停?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長掠拳。 經常有香客問我癞揉,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任喊熟,我火速辦了婚禮柏肪,結果婚禮上,老公的妹妹穿的比我還像新娘芥牌。我一直安慰自己烦味,他們只是感情好,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布壁拉。 她就那樣靜靜地躺著谬俄,像睡著了一般。 火紅的嫁衣襯著肌膚如雪弃理。 梳的紋絲不亂的頭發(fā)上溃论,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機與錄音痘昌,去河邊找鬼钥勋。 笑死,一個胖子當著我的面吹牛辆苔,可吹牛的內容都是我干的算灸。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼驻啤,長吁一口氣:“原來是場噩夢啊……” “哼菲驴!你這毒婦竟也來了?” 一聲冷哼從身側響起骑冗,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤赊瞬,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后沐旨,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體森逮,經...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡榨婆,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年磁携,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片良风。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡谊迄,死狀恐怖,靈堂內的尸體忽然破棺而出烟央,到底是詐尸還是另有隱情统诺,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布疑俭,位于F島的核電站粮呢,受9級特大地震影響,放射性物質發(fā)生泄漏。R本人自食惡果不足惜啄寡,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一豪硅、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧挺物,春花似錦懒浮、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至痴昧,卻和暖如春稽穆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背剪个。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工秧骑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人扣囊。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓乎折,卻偏偏與公主長得像,于是被迫代替她去往敵國和親侵歇。 傳聞我的和親對象是個殘疾皇子骂澄,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內容