[android-developers] Re: Hello

2009-09-16 Thread Don Tran
so tell us when will the motorola sholes be ready? On Sep 16, 1:07 pm, Mark Murphy mmur...@commonsware.com wrote: suzanne.alexandra wrote: I'm Suzanne Alexandra, and I work with Android at Motorola. I'm a real human and will be posting here from time to time. Hi, Suzanne! Welcome to the

[android-developers] Re: Android 1.6 SDK is here!

2009-09-15 Thread Don Tran
The documentation and javadocs are really lacking in information regarding the new APIs. I am hoping the SDK got rushed out for developers to view and the information will be filled in later. Right now I have no idea how to use any of the new classes. On Sep 15, 3:35 pm, Jason D. Clinton

[android-developers] Re: Android WVGA support

2009-09-08 Thread Don Tran
I know this is hard due to ongoing things changing but if it's possible to give more information on how to deal with various resolutions and densities, it will be great. Back in the cupcake 1.5 release, developers probably had a week maximum to make changes after the new SDK was released and

[android-developers] Re: Determine what's the active package or activity running?

2009-08-17 Thread Don Tran
in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Aug 16, 6:49 pm, Don Tran arro...@gmail.com wrote: I want my background service to determine the active package or activity running.  Is this possible? --~--~-~--~~~---~--~~ You

[android-developers] Determine what's the active package or activity running?

2009-08-16 Thread Don Tran
I want my background service to determine the active package or activity running. Is this possible? --~--~-~--~~~---~--~~ 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] Re: Avoid Failed Binder Transaction

2009-07-18 Thread Don Tran
: On Jul 13, 1:47 pm, Don Tran arro...@gmail.com wrote: My application is getting a failedbindertransaction, which causes it to completely hang,  when I do the following: Process process = Runtime.getRuntime().exec(SOME COMMAND); BufferedReader br = new BufferedReader(new InputStreamReader

[android-developers] Avoid Failed Binder Transaction

2009-07-12 Thread Don Tran
My application is getting a failed binder transaction, which causes it to completely hang, when I do the following: Process process = Runtime.getRuntime().exec(SOME COMMAND); BufferedReader br = new BufferedReader(new InputStreamReader (process.getInputStream()); While(read the content using