I have an app that displays the html of a blog post in a WebView. The images, however, are rather large and do not fit to the screen. When viewing the post in the Android Google Reader app, however, all of the images have their width reduced to fit the screen.

The Android Google Reader will also parse out all embedded Youtube and Vimeo embeds and replace them with thumbnails with links so the dedicated Youtube player can play the video instead.

How would I go about doing this? I've tried using Jsoup to match all the images in a post and alter their width, but I don't know how to go about modifying the Youtube video embeds.

link|improve this question

75% accept rate
I assume if you are using a CMS like wordpress - using a mobile theme is out of the question? I have seen many sites do this including SO where I get a different theme and content is altered to help people on mobile devices. It often runs on the sub domain m.domain.com. Just a thought. – Graham Smith Jan 11 at 18:48
I'm pulling down information from a Drupal site using their Services module. The app has to be native, so a mobile theme is unfortunately out of the question. – oneilse14 Jan 11 at 18:49
I have just finished a project using the same module. The only thoughts I have are that you could read the node info as a string and change all youtube embeds via regex to links. Android picks up on YouTube links and on my devices it offers me the choice to open in YouTube or via browser. – Graham Smith Jan 11 at 18:52
Ok to cope with images you should be able to alter those again by manipulating the img url via a module like image cache, which will then build a resized image for you. I am just pitching ideas here hence this is not really a proper answer. – Graham Smith Jan 11 at 18:55
Using regex to modify the Youtube embeds messed up the tags when I tried it last, which is what lead me to using an HTML parser like Jsoup. If you have a working regex, that would be great. – oneilse14 Jan 11 at 19:00
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted
+50

For converting embed Youtube videos to thumbnails you can do it with mobitube.js code from Mobilize.js project:

https://github.com/mobilizejs/mobilize.js/blob/master/js/mobitube.js

Also I believe Google Reader simply resizes the images using CSS overrides.

Mobilize.js has also tools for rewriting image tags and perform "de-float" operation for them:

https://github.com/mobilizejs/mobilize.js/blob/master/js/mobilize.js#L2005

More about defloat algo:

http://webandmobile.mfabrik.com/docs/web-and-mobile/user-manual/resizing

If you want to resize images on the server-side this is a third party solution:

http://adaptive-images.com/

... though writing your own image resize proxy server from the scratch is not that challenging.

link|improve this answer
I'm going to try this out in a bit, but mobilize.js looks like a goldmine. – oneilse14 Jan 12 at 1:28
Please feel free to contact me (author) for further ideas – Mikko Ohtamaa Jan 12 at 8:14
How exactly would I go about injecting the javascript into an Android webview? From your documentation it looks like this is mostly server-side code. – oneilse14 Jan 13 at 0:39
It is. I think you could open another stackoverflow.com question for that - I believe there already exist some answers on this forum :) – Mikko Ohtamaa Jan 13 at 9:32
Also you can read Phonegap source code if you want to see how it communicates with WebView – Mikko Ohtamaa Jan 13 at 9:33
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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