Languages

Menu
Sites
Language
Web browser-based applcation without address bar

Hello,

I'm trying to make simple application that just launch our company's website.

But one hurdle is addressbar at the starting point, it tells user 'this is just website!!'.

That is not my goal, I want to user think it as web application, not just web browser.

 

Someone know how to do it using Tizen API?

Javascript like "window.location="http://www.google.com" was not solution.

 

 

 

 

Responses

10 Replies
Micheal Dyson

Although it is based on  a Linux kernel 3.11 and comes with Tizen Web RunTime (WRT) enhanced, my site created by <a href="http:// optimizepress.wpservice.org "> Optimizepress Service </a> is working on others operating systems rather than this operating system. I have changed the browsers but the peoblem still is not solved

colin Rao

Hi, 

Possible, you can try to create aTizen Native App with a webview to show your company website, this webview don't have the address bar.

Palitsyna

Hello,

as Colin Rao said, probably you can use Tizen native App with a webview.

Here is Tutorial: https://developer.tizen.org/development/tutorials/native-application/web

Here is API: https://developer.tizen.org/dev-guide/2.3.0/org.tizen.native.mobile.apireference/group__WEBVIEW.html

AVSukhov

Hello,

Using default Web browser to load extenal resource (functionality that is not implemented in your application) this is user frendly behavior (UX) for most mobile operate system.

Using Web API you will not be able to implement quickly and conforming to the requirements that you want.

Alex Dem

Hi,
Maybe you could try to use iframe as part of you web app
Alexey.

Alex Dem

fyi:
https://developer.tizen.org/development/guides/web-application/w3chtml5supplementary-features/security/html5-iframe-element
Alexey.

 

AVSukhov

Hello,

Using iframe do not forget to add external resource to access tag in config.xml

Palitsyna

Hello,

as AVSukhov said, don't forget to add access tag to your config.xml file:

<access origin="*" subdomains="true"></access>

You can type specific address instead of '*' to allow access only to that web address or type '*' to allow access to any address.

Vikram

Hi,

I try to write the code to test using the <iframe>. It work well both in simulator and device. And Web browser-based applcation without address bar.

If you add the <iframe seamless="true"></iframe>. You can clear see the display result.

AVSukhov

"seamless" attribute of iframe tag used to render a page as a part of the parent document and include it in the iframe element.

http://www.w3.org/TR/2011/WD-html5-20110525/the-iframe-element.html#attr-iframe-seamless