How to hide browser URL bar and controls when opening external URLs in Tizen Web hosted app

Original Created Apr 05, 2017 | Regeneration Apr 22, 2026

Is it possible to hide the URL bar and browser controls when opening an external URL in a Tizen Web hosted application? I want to achieve a fullscreen-like experience.

Currently, when I open an external link, the URL bar is visible on page load and remains visible when scrolling the page.

Problem Understanding

The user wants to display external web content in their Tizen Web application without showing the browser's URL bar and controls, similar to a fullscreen mode. This is a common requirement when developers want to maintain a consistent UI/UX without exposing browser elements.

Solution Methods

  1. Using WebView instead of Browser:

    • The browser application cannot be modified as it's a separate system application
    • Instead, use Tizen's WebView component which gives you control over the display
    • WebView allows hiding the URL bar and provides more customization options
  2. Implementation Steps:

    • Create a native application with WebView component
    • Configure WebView settings to disable URL bar display
    • Load your external URL in the WebView

Code Examples

// Basic WebView implementation example
var webView = new tizen.WebView("webview1");
webView.setLoadListener({
    onloadstart: function() { console.log("Page loading started"); },
    onload: function() { console.log("Page loaded"); }
});
webView.loadURL("https://example.com");
document.body.appendChild(webView);

Additional Tips

Customize your cookie preferences

You can enable or disable non-essential cookies. Essential cookies are always on to ensure the site works properly and to keep you signed in.

Necessary

These cookies are necessary for the website to function properly and cannot be switched off. They help with things like logging in and setting your privacy preferences.

Always on

Analytics

These cookies help us improve the site by tracking which pages are most popular and how visitors move around the site.

Enable analytics cookies
Public Forum Public Forum
Employees only. Please sign in with your company account.