[android-developers] Re: Spreadsheet of current phones vs screensize/skin and density

2010-01-11 Thread Kim Pedersen
HVGA (320x480) was the only resolution supported with Android 1.5. The following URL shows the range of screens supported with Android 1.6 and newer versions of the SDK: http://developer.android.com/guide/practices/screens_support.html#range A quick search found the following list (dated October

[android-developers] Re: Bug in Bitmap.compress when used on JPEGs?

2008-09-03 Thread Kim Pedersen
Maybe some of the requests are getting blocked. Try adding connect and read timeouts by rewriting the url.openStream() to openConnection().getInputStream(): ... URL url = uri.toURL(); URLConnection con = url.openConnection(); con.setConnectTimeout(3000); con.setReadTimeout(3000); Bitmap bmp =