Android Question WebView responsive.

gacar

Active Member
Is it possible to WebView iframe responsive that include already responsive web page (eg bootstrap)?
 
Solution
Is it possible to WebView iframe responsive that include already responsive web page (eg bootstrap)?
Yes
can be done locally
or calls to external web page and you don't need to use iframe.
And it is resposive if you use bootstrap.

ps:
use html meta.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

TILogistic

Expert
Licensed User
Longtime User
Is it possible to WebView iframe responsive that include already responsive web page (eg bootstrap)?
Yes
can be done locally
or calls to external web page and you don't need to use iframe.
And it is resposive if you use bootstrap.

ps:
use html meta.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
 
Upvote 0
Solution

TILogistic

Expert
Licensed User
Longtime User
if you use .Bootstrap it will look like this in webview

1635069353231.png
 
Upvote 0
Top