[android-developers] Re: HttpPost works with Wifi, not with Mobile...

2010-02-20 Thread p1erstef
and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 3, 10:52 pm, p1erstef pierre.stef...@gmail.com wrote: Hi all, I'm trying to use HttpPost to send data from an android device to a server. It works great with a Wifi connection, but I get the IOException The target server failed

[android-developers] Re: HttpPost works with Wifi, not with Mobile...

2010-02-20 Thread p1erstef
No, I'm not using https, I'm using http. On 20 fév, 18:07, Michael Rueger mike.rue...@gmail.com wrote: On 1/3/2010 6:52 PM, p1erstef wrote: Any idea of where the problem could come from? are you using https? http://groups.google.com/group/android-developers/browse_thread/threa... http

[android-developers] HttpPost works with Wifi, not with Mobile...

2010-01-03 Thread p1erstef
Hi all, I'm trying to use HttpPost to send data from an android device to a server. It works great with a Wifi connection, but I get the IOException The target server failed to respond with a Mobile connection (3G, Edge, etc.). It doesn't seem to be a timeout problem (I set it to 90s). The use of

[android-developers] One picture, ACTION_VIEW, and no navigation

2009-08-11 Thread p1erstef
Hi all, I have a small clickable ImageView representing one of the pictures the user took with the device. When the user clicks on this ImageView, I’d like the picture to be displayed in full screen mode. I’ve found the ACTION_VIEW action to do that, except that with ACTION_VIEW, the user can

[android-developers] Re: Resizing an image

2009-06-23 Thread p1erstef
I met the same issue. Here the workaround I found : BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 8; Bitmap bitmap = BitmapFactory.decodeFile(filename, options); BitmapDrawable drawable = new BitmapDrawable(bitmap);