Get access to over 100 FireMonkey cross platform samples for Android, IOS, OSX, Windows, and Linux!

AndroidAppmethodCode SnippetDelphiFiremonkey

Virtual Keyboard With TWebBrowser On Android In Delphi XE5 Firemonkey

| Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOS

Virtual Keyboard TWebBrowser Android Delphi Firemonkey | Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOSBy default Delphi XE5 Firemonkey doesn’t bring up the virtual keyboard when you tap an edit field inside of a TWebBrowser. This can be a problem if you are attempting to create an HTML5 app using the TWebBrowser control. The reason why this is the case is because TWebBrowser is actually wraps around a native Android control called a WebView that is floating over the top of the TForm. Someone came up with a fix that will allow the virtual keyboard to come up over on Stackoverflow. Another possible fix is to just use a Javascipt based virtual keyboard on the page you are viewing TWebBrowser with. The root of the fix is to allow the TWebBrowser control to get focus using:

procedure TFormBrowserAdd.ButtonNavigateClick(Sender: TObject);
begin
  WebBrowser.CanFocus := True;
  WebBrowser.Navigate(EditUrl.Text);
  WebBrowser.SetFocus;
end;


When you are done with the virtual keyboard you can also set the focus back to your form which may take care of some other issues like not being able to use the virtual keyboard in the rest of your form afterwards.

Head over to Stackoverflow to read the full discussion.

Have Delphi Firemonkey questions? Ask and get answers on StackOverflow.

Related posts
DelphiDemoFiremonkeyLinuxOSXShowcaseWindows

AutoBlogAI: FireMonkey Client To Leverage LLMs And Generative AI For Blogging

DelphiFiremonkeyShowcaseUtilityWindows

Unleashing Creativity With Song Writer AI: A Deep Dive

DelphiFiremonkeyShowcaseWindows

How To Build Stable Diffusion Text To Image Prompts

AndroidC++BuilderDelphiFiremonkeyIOSOSXWindows

FireMonkey 10.4.2 Features Updated iOS 14, Android 11, And macOS 11 Support Plus Hundreds Of Fixes

Sign up for our Newsletter and
stay informed

3 Comments

Leave a Reply