Sign up ×
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them, it only takes a minute:

I searched the web but no luck: how can plugins for the native Android browser be developed?! Neither Google nor the Android SDK give information about this topic.

share|improve this question
    
What kind of thing are you looking to implement? – Matt Ball Oct 18 '10 at 14:30
    
a plugin that allows to download the current HTML for further processing. – Sotapanna Oct 18 '10 at 14:42
    
I've written a guide which I hope will be helpful, please see stackoverflow.com/a/15244703/2138979 – Matthew Mar 6 '13 at 12:16

1 Answer 1

up vote 8 down vote accepted

I found a sample of a plugin in the Android source code under development/samples/BrowserPlugin.

So I guess development/samples/BrowserPlugin/README should be a good start.

share|improve this answer
2  
The activity class is SamplePlugin (for eclipse quick open resource) – AlikElzin-kilaka Jul 30 '11 at 19:49
3  
This sample has been removed from AOSP 2.3 (Gingerbread) - possibly unintentionally (since the commit which removed it has "do not merge" in the title). If you have the Gingerbread android source code locally, you can get the BrowserPlugin project like this: cd development/samples git checkout 48c0834ab556185d734e19b679fdc4af99b0de3a BrowserPlugin – Stan Kurdziel Aug 30 '11 at 23:35
    
I don't even see a development folder in the source...? grepcode.com/snapshot/repository.grepcode.com/java/ext/… – NoBugs Jan 9 '12 at 15:29
    
Maybe it has been removed, I found a mirror of the code here: codeaurora.org/git/projects/qrd-gb-dsds-7225/repository/… – NoBugs Jan 12 '12 at 18:54
    

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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