dear, i am a student of bca. i have to do one project in my last semester. so i decided to create web browser which run on android o.s. but i am totally for this application. so, can any one help me for that. i already installed all required tools like jdk, android sdk 3.0, eclipse. but now i have no idea from where i have to start the developing browser. so please help me... i have only 2 months for doing this project. so is this possible in 2 months or not?

link|improve this question
2  
Good luck getting that done in a semester. – Gabe Feb 26 '11 at 15:26
and what are the features you planed for your browser? I have to say it can be a very complex project. – Mauricio Feb 26 '11 at 15:27
@Tej: do you know how many people are working full-time, since years, on Firefox, Chrome, Internet Explorer, Opera, etc.? – SyntaxT3rr0r Feb 26 '11 at 15:28
2  
Web browsers aren't really known for being easy to make... they're more known for making their creators have panic attacks. You might want to consider a different project. – thasc Feb 26 '11 at 15:29
2  
Make a really nice portal screen, then startActivity(new Intent(Intent.ACTION_VIEW, URL)). Yay!! – Phil Feb 26 '11 at 15:57
show 3 more comments
feedback

2 Answers

It depends on what you mean by develop a browser...

Developing a browser + rendering engine from scratch is a hell lot of work, but you could easily create a browser based on Androids WebView using a WebViewClient and create a new user experience by changing the way the user interacts with the browser.

The Webview has all kinds of hooks to intercept user interaction with the browser, so you can easily extend it. For example you could let the user flip through pages (like google fastflip), experiment with 3D by mapping the rendered webpage into OpenGL space (like sphere browser) etc.

As a starting point have a look at Aleksander Kmetec's blog and his Mosembro Project, that extends the Android browser by adding microformat support.

link|improve this answer
thanks dear. is this project is possible in 2 months???? – Tej Feb 27 '11 at 12:05
feedback

Sounds like a really big project and therefore you can't just start from scratch and write it down. You have to make a plan on how you want to implement all parts, write down class diagrams etc. If you study informatics you should have heard of these things in previous semesters.

First you should ask yourself if that project is feasible, as you can see from the comments most people agree that you should not underestimate this task!

I really suggest you to understand the extent of this task, here is the source code of Androids browser to give you an impression of it's complexity.

link|improve this answer
Thanks dear. is this possible in 2 months? – Tej Feb 27 '11 at 12:06
You have to give some more details on what you are planning to do before I can answer this question. What exactly do you want to build? I think when you deal with this question you'll find the answer yourself – Maaalte Feb 27 '11 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.