[android-developers] Re: Process has died during onDestroy() of my Activity. Why?

2008-12-29 Thread Mark Murphy
j wrote: My app calls setWallpaper inside onDestroy() of my Activity. The method succeed with no issue about 95% of the time. However, in about 5% of the time, the process crashed: I/ActivityManager( 2591): Process com.jack.moment (pid 5053) has died. I notice my onDestroy

[android-developers] Re: No Internet Connection Sharing?

2008-12-29 Thread DSmith
No such solution exists because no such API yet exists in Android. Use tetherbot. --~--~-~--~~~---~--~~ 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] deviceFunctions read by javascript

2008-12-29 Thread Fred Grott(shareme)
Hello everyone, I made some changes to PhoneGap and got it working on Android, see the video of the device UUID being read via javascript: http://www.youtube.com/watch?v=3SkwQ3P4D1A Once I fully commit changes up to github it should be about 10 days after that changes show up in the main

[android-developers] Re: Synchronizing Maps and Map Overlays - ConcurrentModificationException

2008-12-29 Thread DMT
Let me guess... r u invoking your code from *within* your custom MyLocationOverlay code ? I had the same Java exception as you until I moved my overlay updating code OUT of my custom MyLocationOverlay class. It seems that MyLocationOverlay also maintains a handle on the overlays list, so that

[android-developers] Re: Where could I get an ADT 0.9.0?

2008-12-29 Thread yukinoba
to dear Kenny, I have solved this problem by taking a build sequence to the ADT source code under the newly released cupcake device code, and thanks for your concern ;-) The new ADT (version 0.9.0) is under the /device- code-root/devlopment/tools/eclipse/plugins/ com.android.ide.eclipse.adt ,

[android-developers] Re: Emulator is not able to connect to network

2008-12-29 Thread yukinoba
to dear David, You're right. It's actually a proxy problem at all. In the cupcake version, you need to set proxy through the following steps: 1) adb shell 2) cd /data/data/com.android.providers.settings/databases 3) sqlite3 settings.db 4) INSERT INTO secure

[android-developers] Re: TextView Under Growing ListView

2008-12-29 Thread Moto
Thanks for your help! It solved my issue and also helped me understand a lot better how Layouts work... Moto --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Debugging on actual G1

2008-12-29 Thread chrispix
Yes, It shows up in in DDMS, I can browse the file system, upload new applications, etc. When I go to debug mode the phone is just waiting on Debugger. Application myTest (process com.froogloid.android.myTest) is waiting for the debugger to attach. Here is output : 12-29 23:11:08.692:

[android-developers] Re: Debugging on actual G1

2008-12-29 Thread ramsingh. tanwar28
On 12/30/08, chrispix chris...@gmail.com wrote: Yes, It shows up in in DDMS, I can browse the file system, upload new applications, etc. When I go to debug mode the phone is just waiting on Debugger. Application myTest (process com.froogloid.android.myTest) is waiting for the debugger to

[android-developers] Re: OpenGL texture is upside down

2008-12-29 Thread Tom H
I just checked TriangleRenderer.java in the API demos (API Demos / Graphics / OpenGL ES / Textured Triangle). It's upside down too. On Dec 29, 5:38 pm, Tomei Ningen tomei.nin...@yahoo.com wrote: I think Android wants texture to use upper-left as the origin. Have you checked API demo? ---

[android-developers] Re: OpenGL texture is upside down

2008-12-29 Thread Tom H
I just checked TriangleRenderer.java in the API demos (API Demos / Graphics / OpenGL ES / Textured Triangle). It's upside down too. On Dec 29, 5:38 pm, Tomei Ningen tomei.nin...@yahoo.com wrote: I think Android wants texture to use upper-left as the origin. Have you checked API demo? ---

[android-developers] Re: Capture and Playback

2008-12-29 Thread Lei
Thank you On Dec 30, 12:54 am, Dave Sparks davidspa...@android.com wrote: There is no support for javax.sound in Android and there are no plans to support it. We will have support for streaming audio in a future release. On Dec 29, 1:11 am, Lei poohd...@gmail.com wrote: I'm stuck on

[android-developers] Re: Why the webkit just send to plugin 20 bytes through NPP_Write

2008-12-29 Thread Tang Sam
1.0 no plugin support. 1.1 has. So you must start from 1.1. 2008/12/29 qvark joseluishuertasfernan...@gmail.com Hi Slacker, I'm very interested in developing a plugin for the Android browser, but I have no clue about where to start. Would you be so kind to give me some tips or point out

[android-developers] Re: Problem while creating a new file

2008-12-29 Thread Ashok Kumar
hi,Thanks for your quick responses Now iam trying to create new file in the below ways: Still Iam not able to create the file 1) File testFile = new File(this.getCacheDir(),aaa.txt); if (!testFile.exists()) { System.out.println(--File does not exist: ); } 2) String filePath1 =

[android-developers] Re: Synchronizing Maps and Map Overlays - ConcurrentModificationException

2008-12-29 Thread Peter Stevenson
Peter Wrote: com.google.android.maps.MyLocationOverlay Please note if MyLocationOverlay is a Class in Android Peter DMT wrote: Let me guess... r u invoking your code from *within* your custom MyLocationOverlay code ? I had the same Java exception as you until I moved my overlay

<    1   2