Don't know if this will be useful to anyone but this is some brief sample code showing how to get a FLV video streaming inside a web view.
It's still in very basic form, but I wrote it several months ago and haven't found the time to revisit it - so am sharing here 'as is'. While it works it really shouldn't be used in its current version.
The codes not particularly complex - the basic system is that the player is a webview in a new activity that's set to full screen, no title bar and only shows in landscape. The bit that makes it work is using the reflection library to 'setPluginsEnabled' which gives it flash access, then it loads a simple html page that uses this free FLV player to play the video.
Only other important bit is loading a blank page to the web view to stop the sound from playing after you exit.
Its not a perfect system but it works.
(Notes to be aware of - if you hit the fullscreen button in the flash player the app will crash. If you exit out the app without loading the blank webpage the video will stay running, use a lot of cpu and the app will crash. If you load a really large video the app will crash... you get the idea!)
Hardly ground breaking - but I thought someone might find it useful.

It's still in very basic form, but I wrote it several months ago and haven't found the time to revisit it - so am sharing here 'as is'. While it works it really shouldn't be used in its current version.
The codes not particularly complex - the basic system is that the player is a webview in a new activity that's set to full screen, no title bar and only shows in landscape. The bit that makes it work is using the reflection library to 'setPluginsEnabled' which gives it flash access, then it loads a simple html page that uses this free FLV player to play the video.
Only other important bit is loading a blank page to the web view to stop the sound from playing after you exit.
Its not a perfect system but it works.
(Notes to be aware of - if you hit the fullscreen button in the flash player the app will crash. If you exit out the app without loading the blank webpage the video will stay running, use a lot of cpu and the app will crash. If you load a really large video the app will crash... you get the idea!)
Hardly ground breaking - but I thought someone might find it useful.