Thank you for being a valued part of the CNET community. As of December 1, 2020, the forums are in read-only format. In early 2021, CNET Forums will no longer be available. We are grateful for the participation and advice you have provided to one another over the years.

Thanks,

CNET Support

Question

Web Browser

Mar 1, 2015 7:53PM PST

Hi friends,

I want to make a web browser with Android platform.I researching but usually webview is used. I want to make without library file. Can you help me ?

Discussion is locked

- Collapse -
Answer
Re: make web-browser
Mar 1, 2015 8:24PM PST

Then you'll have to write your own rendering engine to interpret html5 and css3 in such a way that it makes a decent screen out of everything you throw to it. Usually (for Mozilla, Opera, Google and Microsoft) that's a project that takes many, many men-years of work.

I'd start with the most simple html-file imaginebale. That's a .html file containing only the text Hello world! without any tags.

Kees

- Collapse -
Web browser
Mar 1, 2015 9:19PM PST

I m newly about this subject. Can you suggest source website , tutorial things or different methods ? I need basic information.Next I can improve myself

- Collapse -
Re: browser
Mar 1, 2015 9:41PM PST
- Collapse -
Web Browser
Mar 2, 2015 10:12PM PST

I want to use TCP/IP stack. It is easier than with this. But Is there a TCP/IP stack for android ? Is it possible with android ?

- Collapse -
Surely
Mar 2, 2015 10:18PM PST
- Collapse -
Al[though ...
Mar 2, 2015 10:24PM PST

you don't need tcp/ip to develop the webview equivalent. Any browser can read a html-file from your local hard disk. You only need tcp/ip to read it from the internet. Since your own hard disk is faster, it makes sense to work local until it's really needed to go remote.

Kees