Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is baseUrl in android web view?

In loadDataWithBaseURL method from Android WebView, there are "baseUrl" and "historyUrl".

What are they used for?

I have read the android documentation but still don't know what they are.

like image 543
dondonhk Avatar asked Mar 31 '15 05:03

dondonhk


People also ask

What is a WebView URL?

The WebView class is an extension of Android's View class that allows you to display web pages as a part of your activity layout. It does not include any features of a fully developed web browser, such as navigation controls or an address bar. All that WebView does, by default, is show a web page.

What is loadUrl?

loadUrl when you say loadUrl. From documentation, only difference between them is, loadURL renders a webkit having a url that you set. On the other hand, loadData renders webkit, that source code comes from a parameter, and baseURL is also a parameter.

Can I disable Android WebView?

Go to Settings > Apps/application > More > Show system. Scroll to and select Android WebView. Tap Disable.

What is alternative of WebView in Android?

Alternatives to WebView If you want to send users to a mobile site, build a progressive web app (PWA). If you want to display third-party web content, send an intent to installed web browsers. If you want to avoid leaving your app to open the browser, or if you want to customize the browser's UI, use Custom Tabs.

What is Android webkit?

The androidx. webkit library is a static library you can add to your Android application in order to use android. webkit APIs that are not available for older platform versions. Requirements. The minimum sdk version to use this library is 14.

What is Android WebView browser?

The Android System WebView app is an Android system app that allows other apps to display web content. In effect, it offers a smaller version of the Google Chrome for Android web browser that other apps can use to show web pages and other web content without switching to another app.


1 Answers

Loading HTML Into a WebView With a Base URL

If the HTML you load directly into the WebView in your Android web app contains links with relative URLs, then these links may not work correctly. When you load HTML directly into the WebView the HTML has no base URL from which to interpret the relative URLs. The Android WebView component has a solution for that.

You can load HTML directly into the WebView with a base URL. The base URL is then used to resolve all relative URLs in the HTML. To load HTML with a base URL you have to use the loadDataWithBaseURL() method. Here is a WebView loadDataWithBaseURL() example:

String baseUrl    = "http://tutorials.jenkov.com";
String data       = "Relative Link";
String mimeType   = "text/html";
String encoding   = "UTF-8";
String historyUrl = "http://tutorials.jenkov.com/jquery/index.html";
webView.loadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl);

The loadDataWithBaseURL() method takes 5 parameters. The data parameter is the HTML to load into the WebView. The mimeType is the mime type of the data loaded into the WebView (in this example text/html). The encoding is the binary encoding of the data (in this example UTF-8). Note: I tried using UTF-16 as encoding but the content displayed in the WebView looked pretty strange (like Asian characters).

The baseUrl parameter is the base URL from which all relative URLs in the loaded HTML is interpreted.

The historyUrl parameter is the URL to write into the WebView's internal navigation history for the HTML loaded into the WebView. If the user navigates from the loaded HTML to another page, and then clicks the "back" button, then it is this URL the WebView will navigate back to. You may have to intercept the loading of this URL, since navigating back the WebView's history will not take you to the loaded HTML, but to the URL specified in the historyUrl parameter (or about:blank if historyUrl is set to null).

For more information go through this tutorial and this stackoverflow answer.

like image 198
Exception Avatar answered Oct 15 '22 04:10

Exception