[android-developers] BACK key during view change

2009-04-20 Thread bleucalme
Hi, I have 2 independent surface views (no ViewGroup) andI want to handle the BACK key in my application.The BACK key works fine in both views. Unfortunately, if I press BACK during the view transition, the OS handles the key so the application exits. I moved the keys callbacks from the

[android-developers] Re: Drawing ViewGroup content on a SurfaceView/SurfaceHolder Canvas

2009-03-24 Thread bleucalme
I want to do something similar. Did you find a solution? On Mar 13, 7:33 pm, Zia zia.cha...@gmail.com wrote: Hi, Wanted to know if its possible to draw ViewGroup contents on SurfaceView/SurfaceHolder canvas?  I'm trying to achieve fast 2D animation (using SurfaceView) alongside Android UI

[android-developers] Re: Video in resources

2009-02-16 Thread bleucalme
()); On Feb 13, 11:41 am, Marco Nelissen marc...@android.com wrote: On Fri, Feb 13, 2009 at 6:15 AM, Mark Murphy mmur...@commonsware.comwrote: bleucalme wrote: Anyone was able to play a video included in the .apk? I'm able to play this video from the SD card but not when it's a resource

[android-developers] Video in resources

2009-02-13 Thread bleucalme
Hi, Anyone was able to play a video included in the .apk? I'm able to play this video from the SD card but not when it's a resource. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Video in resources

2009-02-13 Thread bleucalme
Thanks for the idea, but I can't use the SD card. My application absolutely needs this video. With this method, it if the user removes his SD card, the video would not be available. Maybe I can copy the video from the resources to the flash of the device the first time I use it. Any other

[android-developers] Music player, mute app sound

2009-02-02 Thread bleucalme
Hi, I would like to mute my application's music when the user is listening to mp3 with the OS music player. I'm using 2 channels in my app so I can't use AudioManager.isMusicActive(). Any suggestions? --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: Eclipse Plug-in Site down?

2009-01-28 Thread bleucalme
I'm having the same problemé On Jan 27, 8:20 pm, Mafian911 mafian...@gmail.com wrote: Anyone get anywhere on this? I am still having this problem. On Jan 7, 1:27 pm, PeeWee Sperman cba...@gmail.com wrote: Did you ever get this fixed. I'm having the same problem after researching this

[android-developers] Re: Phone crash on volume key

2008-12-17 Thread bleucalme
Problem solved! Thanks On Dec 16, 7:34 pm, Dave Sparks davidspa...@android.com wrote: It sounds like your application is not releasing its media player resources. When you're done playing a sound, you need to call the MediaPlayer.release() method. If you're playing a lot of sounds rapidly,

[android-developers] Phone crash on volume key

2008-12-16 Thread bleucalme
Hi, In my application (SDK 1.0.r2), after playing few sounds, I loose the sounds. If I touch the volume keys, the device reboots. I get the same behavior on the emulator. Anybody had the same problem? 12-16 14:15:49.892: ERROR/AudioFlinger(24): no more track names availlable 12-16

[android-developers] Video in resource

2008-08-28 Thread bleucalme
Hi, Is it planned to support playing videos contained in the resource? I would like my application to play with a video intro contained in the .apk. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Problem 2nd launch of my application

2008-08-27 Thread bleucalme
, StevePotell [EMAIL PROTECTED] wrote: bleucalme, Kind of looks like your app is still running, make sure you call finish() when closing the app.  Also close and free any system resources you may be using (like media player, etc) prior to calling finish

[android-developers] Re: Problem 2nd launch of my application

2008-08-27 Thread bleucalme
. Please read:http://code.google.com/android/intro/appmodel.html On Aug 27, 8:13 am,bleucalme[EMAIL PROTECTED] wrote: First, thank you for those quick replies. You're right, my application is still running after I taught it was closed. For people having similar problems, in Eclipse, we can see