[android-developers] Re: \n escape character not working

2011-09-27 Thread Josh Gitter
I'm not sure if you're passing in an illegal character, as \n is not accepted. See RFC 1738 2.1 and 2.2. http://www.ietf.org/rfc/rfc1738.txt You probably need to URLEncode to escape characters such as "\n": http://developer.android.com/reference/java/net/URLEncoder.html Hope this helps, Josh On

[android-developers] Re: After using the camera all the activities become horizontal

2011-06-29 Thread Josh Gitter
How did you solve it? On Jun 29, 11:42 pm, gaara wrote: > Solved ! > > On Jun 29, 2:28 pm, gaara wrote:> Hi group, > > when i use the camera in my first activity all activities become > > horizontal, is that  the result of the camera configuration? > > Peace, > > Gaara -- You received this

[android-developers] ProgressBar during Intent

2011-06-22 Thread Josh Gitter
Hello fellow Android developers, Is it possible to show a Dialog or ProgressBar during the pre and post execute phases of an Intent? I am launching an Intent from my Activity to show the Image Gallery. Subsequently the user will be able crop the selected Image. The problem: Launching the gallery

[android-developers] WebView -> Flash overdrawing issue

2011-05-27 Thread Josh Gitter
Has anyone noticed that Flash content within a Webview control overdraws other adjacent controls? It seems that the clipping region of the WebView is not respected. I'm using Adobe Flash 10.3 and a Nexus S. Here is a screen capture of flash content drawing outside of my Webview control. Notice th

[android-developers] Re: Icons looks blurred instead of being sharp after resizing

2011-04-21 Thread Josh Gitter
Try making these images into 9-patch pngs. Read up on the draw9patch tool in the android sdk. You can also leverage the different res folders for different scale devices (drawable-hdpi, drawable-mdpi, drawable-ldpi) On Apr 20, 1:09 pm, Dianne Hackborn wrote: > The size of app icons is 48x48 dp u