[android-developers] Re: launch activity from on-screen Camera/Capture button?

2010-02-12 Thread Abhi
Hi Jason, I am not sure if you understood my question correctly... maybe I didn't frame it right :) I am trying to start a background activity, for e.g. the accelerometer from within the Camera app. I want the accelerometer to run while the user is shooting a video. I don't want to build my own

[android-developers] Re: launch activity from on-screen Camera/Capture button?

2010-02-10 Thread Abhi
anyone? On Feb 8, 1:24 pm, Abhi abhishek.r.sha...@gmail.com wrote: Hi, Is it possible to start an activity from the built-in Camera app after the user touches the on-screen Capture button? Abhi -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: launch activity from on-screen Camera/Capture button?

2010-02-10 Thread Jason Proctor
are you calling the Camera activity from your application with the intent of being called back when the user takes a picture? the conventional way to do this is to start the Camera with startActivityForResult() instead of the regular startActivity(). override onActivityResult() to receive the