• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. J

    Apps Detect if camera is launched

    I'm creating an app that launches the video camera using the following code... Intent intent = new Intent("android.media.action.VIDEO_CAMERA"); startActivityForResult(intent, 1); I only want to launch this if the video camera is not open. I've run into the issue of having...