Re: [android-developers] .pfx SSL Certificate

2010-08-27 Thread Jake Radzikowski
Toss it in the resource folder? or are you asking how to load it? On Fri, Aug 27, 2010 at 6:01 AM, Ajay wrote: > Hi, > Does anyone know how we can include an SSL certificate (.pfx) with > our App? > > Thank you, > AJ > > -- > You received this message because you are subscribed to the Google >

Re: [android-developers] Re: String being truncated when its long

2010-08-26 Thread Jake Radzikowski
Ex that I was seeing things apparently. On Thu, Aug 26, 2010 at 4:21 PM, Jake Radzikowski < radzikowski.j...@gmail.com> wrote: > Could you try removing the responseHandler? > > > On Thu, Aug 26, 2010 at 4:13 PM, Achanta wrote: > >> I Tested your suggestions by setting

Re: [android-developers] Re: String being truncated when its long

2010-08-26 Thread Jake Radzikowski
g is driving me nuts. > > On Aug 26, 4:58 pm, Jake Radzikowski > wrote: > > reader = new BufferedReader(new InputStreamReader(inputStream), 8000); > I'm > > gunna guess that 8000 has something to do with it :). I usually use the > > following: > > > >

Re: [android-developers] String being truncated when its long

2010-08-26 Thread Jake Radzikowski
reader = new BufferedReader(new InputStreamReader(inputStream), 8000); I'm gunna guess that 8000 has something to do with it :). I usually use the following: reader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8")); On Thu, Aug 26, 2010 at 3:40 PM, Achanta wrote: > > > I am tr

Re: [android-developers] Animate a single view in sequence

2010-08-26 Thread Jake Radzikowski
I believe the error is android:fromXDelta="100%" in your second translate. Did you mean android:fromXDelta="-100%"? On Wed, Aug 18, 2010 at 7:30 AM, marmor wrote: > Hi, I would like to animate a view I have to appear like it was > sliding off the screen to the left, and then sliding back to the

Re: [android-developers] How to invoke another application on a Button Click?

2010-08-18 Thread Jake Radzikowski
startActivity http://developer.android.com/reference/android/app/Activity.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send em

Re: [android-developers] LG-debug

2010-07-16 Thread Jake Radzikowski
Hey, http://developer.android.com/guide/developing/other-ide.html#Running If nothing on there works you could follow the instructions on http://developer.android.com/guide/developing/other-ide.html#ReleaseMode "Once you have signed your application with a private key, you can install it on an em

Re: [android-developers] button layout

2010-07-16 Thread Jake Radzikowski
> thx for reply. Actually I solved the problem after I emailed out an hour. > Coz the terms in Android(Google) is different from other programmings, which > is not easy to find a solution from this long document. This is how > different of a programmer and designer. They can never live together