webview

  1. Ahmet KOÇ

    Android Question webview video fullscreen problem

    Video full screen button is not active on webview. anyone who solved this problem?
  2. a6000000

    Android Question [B4A] WebView how to hide Zoom Controls (+) (-) buttons ? setDisplayZoomControls(false)

    in AndroidStudio in WebView, I hide the (+) (-) Zoom Controls UI buttons with : // in AndroidStudio onCreate() : private WebView webView; // .. // hide +- buttons webView.getSettings().setDisplayZoomControls(false); How to hide it in B4A ?
  3. b4x-de

    Android Question [SOLVED] Local file with URI fragments in a WebView

    Hi, showing a remote URL with a URI fragment in a WebView works fine. For example the URL https://www.b4x.com/android/help/views.html#webview_loadurl is shown in a Webview. Using a local saved html file with framents does not work. Is there any way to show something like...
  4. Phayao

    Android Question Mouseover effect by javascript not working in webview

    Hello, I could not find a solution in the forum, so i ask here: I load a html file which contains javascript via webview.loadurl. The javascript defines a mouseover or hover effect on <a> tags: Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout("Layout")...
  5. Martin Larsen

    iOS Question Webview ignores links with target="_blank"

    In B4A, a link which in a normal browser opens in a new tab, just opens in the same webview. In other words, it ignores the target="_blank" attribute. In B4i, the webview instead ignores the link completely. It doesn't open. Right now my fix is: Private Sub wv_PageFinished (Success As Boolean...
  6. H

    Android Question PHP and WebView (XAMPP)

    Hi. I'm trying to display a PHP file from (XAMPP Local server) in a webview but i get nothing to show. Is there something i'm missing? I Should mention that the PHP page utilizes CSS and Javascript. Also, the PHP file is just a table that displays records. Is there a better way to do this...
  7. P

    Android Question Very poor webview performance

    Hi I'm loading a local html in a webview, but the webview is extremely slow. I tried adding hardware accelerating to manifest, and everything else found in forum. But none of them worked. I uploaded my project. if that helps. Also there's only a webview in my activity. nothing else This is...
  8. Martin Larsen

    iOS Question Webview: User agent and cookies

    Getting and setting the user agent In B4A I can set get and the user agent using using Reflector: Dim r As Reflector r.Target = webview r.Target = r.RunMethod("getSettings") ' Get user agent userAgent = r.RunMethod("getUserAgentString") ' Set user agent r.RunMethod2("setUserAgentString"...
  9. H

    B4J Question Sleep and WaitFor With Webview

    i want use "WaitFor" without stopping WebView. When i use "WaitFor" my WebView flashplayer and movable objects(Animations/Gif's) goes pausing. I do not want "WaitFor" to interfere in WebView's work.
  10. M

    iOS Question Make the status bar invisible AND the bottom bar (on iphoneX +)

    Hi everyone, it's possible to make the status bar transparent (in the screenshot is the white space at the top), anche make transparent the bottom part? This layout is simply a web view with a GIF, in the designer the Webview is set to cover all the area. This represent the splashsceen. Thanks!
  11. james_sgp

    iOS Question Webview not showing local image

    Im using Webview to display a large image (so can be zoomed and panned). It works perfectly on the Simulator and on development iPhone, but my testers (using Testflight) are not seeing the image and there is no error message. Can someone advice.. Thanks, James
  12. bernardR

    Android Question Bug in webview with contenteditable element

    Hello, I am stuck in the use of a contenteditable element of an html page by a bug that I can't get around. I isolated it in the very small program attached. Start the program 1. Place the cursor in the word A1B2CD3E4F5G6HIJKLM before G (a letter, not a number) 2. Type the sequence of the 3...
  13. F

    iOS Question FirebaseAuth with WebView

    I'm trying to login to my application with Facebook using FirebaseAuth, however when I call facebook.SignIn, it doesn't trigger the Auth_SignedIn (User As FirebaseUser) event after I accept to sign in with Facebook and Continue. Any idea how I could do that? thanks. Call format not using...
  14. Martin Larsen

    Android Question WebView with Upload File crashes

    I am trying to implement file upload for a webview. As soon as I insert these entries in the manifest, the app crashes immediately upon start. I have not implemented any of the B4A and Java code from the example, and the activity with the webview is not even started...
  15. DALB

    Android Question in webview no pictures appear

    Hello everyone, in a little app, i try to put a web page by this way, using a webview object in the designer which name is wv1. with an editor, I build a page I save as 'index.html'. This page has text and pictures. When I import in the index.html in b4a, the pictures are in a folder 'images'...
  16. Martin Larsen

    Android Question Virtual Keyboard hides input fields in webview

    I have a problem with the soft keyboard hiding input fields in webviews. I have tried the solution in this post but it works "too well" so to speak. It always pushes the webview up, thus hiding fields in the top that would not normally be covered by the keyboard. I have attached an example...
  17. Marcos Alves

    Android Question GPS and WebView

    Hello all, I'm trying to use a webview that access a site which requires the location, but besides I requested and allowed PERMISSION_ACCESS_FINE_LOCATION in the app I'm still getting the message about gps authorization required inside the webview - there is no any pop up to request that...
  18. D

    Android Question Intercepting Page Change on Webview

    I need to redirect certain App Websites to the main phone browser as webview is incomplete. This would typically be sites like Facebook.com. These App Websites would be accessed by the user clicking on a link, such as Facebook Share link. The code below is intended to intercept these clicks...
  19. T

    Android Question Android Webview Show URL Error

    ERR_NAME_NOT_RESOLVED error when using webview to display the webpage, but there is no problem using the built-in Chrome
  20. bdunkleysmith

    B4J Question [Solved] WebView error with B4JPackager11

    I'm trying to make the leap from Java 8 or OpenJDK 11, but I am experiencing an error which I've been unable overcome. I use the KeyListener from the jGameViewHelper library to launch a ModalForm to display the application's help in a WebView. After packaging it using B4JPackager11 and...
Top