[android-developers] bypass android Error dialogs

2011-11-02 Thread Jey
Hi all, can we show our custom dialog's when any exception occurs? i can catch the exception with help of UncaughtExceptionHandler but i need to disable error dialogs -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

[android-developers] Re: How to remove Top Activity from Display Stack

2011-06-20 Thread Jey
T. > > Home screen shortcuts are launched with FLAG_ACTIVITY_NEW_TASK | > FLAG_ACTIVITY_RESET_TASK_AS_NEEDED, I'd recommend read up on them first. > > -- Kostya > > 2011/6/20 Jey > > > > > > > > > I want to Remove top activity from display stack , >

[android-developers] How to remove Top Activity from Display Stack

2011-06-20 Thread Jey
I want to Remove top activity from display stack , FLAG_ACTIVITY_CLEAR_TOP helps me to do this but not in all cases, this flag helps when i Manually launch a particular activity and removes top activity from stack ,But when i bring my application from Home Screen , by default top activity only disp

[android-developers] keep alive xmpp connection

2010-10-22 Thread Jey
Hi all, is there any way to keep my connection alive when the screen goes off ? my xmpp connection is disconnected due to ACTION_SCREEN_OFF event, Regards, Jey -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Live Folders Access

2010-10-06 Thread Jey
Hi all, How can we read content from Existing live folders? i able to create live folder using this intent ACTION_CREATE_LIVE_FOLDER, as per the documentation Home querying live folder contents , is it possible to query the content from live folder in our applications? -- You received th

[android-developers] Re: Bitmap to Bytes then bytes to Bitmap

2010-09-27 Thread Jey
hi all, i tried with Base64 class but no luck am getting long string instead of hex value([B0dgd...]) but the bitmap is not created.. while sending Base64.encodeBytes(arr); while Downloading byte[] arr = Base64.decode(bytedata); thanks & Regards

[android-developers] Re: Bitmap to Bytes then bytes to Bitmap

2010-09-27 Thread Jey
 You should > be consistent about either using unpacked bytes, as in your save > operation, or packed bytes, as in your read operation. > > --SJ > > > > On Mon, Sep 27, 2010 at 6:38 AM, Jey wrote: > > Hi all, > > >       Am trying ... -- You received this messa

[android-developers] Bitmap to Bytes then bytes to Bitmap

2010-09-27 Thread Jey
Hi all, Am trying to store all images in my server, then i need to show based on requirements, i am able to store and restore bitmap bytes but i cant recreate the bitmap using stored bytes , pls find my code below and suggest me a solution if i doing wrong Converting Bitmap to Bytes

[android-developers] Keep soft keyboard alive while using RECOGNIZER

2010-09-01 Thread Jey
My view have a Edit Text Field , i invoked the soft keyboard in OnCreate() using InputMethodManager.SHOW_IMPLICIT. also my view have a image button to launch Voice Recognizer intent , if i launch the voice Recognizer the Softkeyboard automatically disappears,how to keep the softkeyboard alive is th

[android-developers] Re: How to add a third-party jar into apk?

2009-12-14 Thread Jey Michael
I think this will be addressed by my fix: https://review.source.android.com/#change,12625 Looks like the above is not merged into the source tree yet. -J e y On Mon, Dec 14, 2009 at 1:02 AM, bear tung wrote: > for example, xml-security project.  I used add > xmlsec-1.4.3.jar(http://santuario.ap

[android-developers] Re: Custom Components in a different package?

2008-08-28 Thread Jey
Thanks Brad. Thats my understanding, that we cannot share jar files. I thought you had(cked) a way to pass jar files to dx, which I could follow. Never mind. thanks for the response, -Jey On Aug 28, 10:58 am, Brad Larson <[EMAIL PROTECTED]> wrote: > I was able to get it working in E

[android-developers] Re: Custom Components in a different package?

2008-08-26 Thread Jey
On Aug 11, 11:48 am, Brad Larson <[EMAIL PROTECTED]> wrote: > I took the auto-generated build.xml > and modified it to pass the .jar files to dx.  Everything works fine Can you share the bits of the build.xml ? Did you get it to work on Eclipse, by the way?

[android-developers] Re: referring to res-id across packages

2008-07-12 Thread Jey
Guess no one is doing this sort'a thing. Anyone developing custom widgets, out there? This would have come up in those scenarios I would think. -Jey On Jul 9, 10:05 pm, Jey <[EMAIL PROTECTED]> wrote: > Hi: > > In the > examplehttp://code.google.com/android/samples/

[android-developers] referring to res-id across packages

2008-07-10 Thread Jey
"R.styleable.LabelView_textColor" Can I access "android:background" in Java?? Given that the LabelView resides in a different package, what is the programmatic way to access android:background in java code? Is this prohibited? thanks Jey --~--~-~--~~~---~--~~ You r