Click here to Skip to main content
15,895,812 members
Articles / Mobile Apps / Android
Article

Android + iOS Torch sample

Rate me:
Please Sign up or sign in to vote.
3.91/5 (10 votes)
31 Jan 2012CPOL2 min read 37.4K   1.7K   23  
Samples for present Android and iOS to control torch.
This is an old version of the currently published article.

Introduction

These are simple sample to present that how to control touch in iOS and Android.

Background

I developed a cross-platform framework that named CloudBox.

In alpha version, I went to verify CloudBox, so I thought that I could develop some easy application.

The touch sample was first application developing by CloudBox.

On, but CloudBox is not ready to open, so these samples are normal Android and iOS sample.

Using the code

In Android, I implement a class named CloudLed to control camera.
Java
public class CloudLed {
    boolean m_isOn;
    Camera m_Camera;
    
    public boolean getIsOn() { return m_isOn; }
    
    public CloudLed()
    {
        m_isOn = false;
    }
    
    public void turnOn()
    {
        if(!m_isOn)
        {
            m_isOn = true;
            try
            {
                m_Camera = Camera.open();
                Camera.Parameters mParameters;
                mParameters = m_Camera.getParameters();
                mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
                m_Camera.setParameters(mParameters);
            }catch(Exception ex){}
        }
    }
    
    public void turnOff()
    {
        if(m_isOn)
        {
            m_isOn = false;
            try
            {
                Camera.Parameters mParameters;
                mParameters = m_Camera.getParameters();
                mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
                m_Camera.setParameters(mParameters);
                m_Camera.release();
            }catch(Exception ex){}
        }
    }
}

The Camera class is used to set image capture settings, start/stop preview, snap pictures, and retrieve frames for encoding for video. This class is a client for the Camera service, which manages the actual camera hardware.

To access the device camera, you must declare the <a href="http://developer.android.com/reference/android/Manifest.permission.html#CAMERA">CAMERA</a> permission in your Android Manifest. Also be sure to include the <uses-feature> manifest element to declare camera features used by your application. For example, if you use the camera and auto-focus feature, your Manifest should include the following:

XML
<uses-permission android:name="android.permission.CAMERA" /> 

In android develop, call <code>Camera.open() to get the instance, then get parameters from the instance and modify.

The Camera.Parameters.FLASH_MODE_TORCH parameter can easy to set flash led to torch mode.

Remember to call release() to release camera when the program onPause.

The sample already tested in Samsung Galaxy S2.

C++
#import <AVFoundation/AVFoundation.h> 
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
if ([device hasTorch]) {
        [device lockForConfiguration:nil];
        [device setTorchMode: AVCaptureTorchModeOn];
        [device unlockForConfiguration];
} 

In iOS, it is also to easy control touch.

[AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]<code><code> will returns the default device used to capture data of a given media type.

In the sample, call hasTorch to check device support touch or not.

Before control touch, we must call lockForConfiguration to attempt to acquire a lock on the capture device.

And call unlockForConfiguration to relinquish a lock on a device.

C++
[device setTorchMode: AVCaptureTorchModeOff]; 

Using the code to turn off.

History

V1.0, 31 January, 2012- New Article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect SIS
Taiwan Taiwan
CloudBox cross-platform framework. (iOS+ Android)
Github: cloudhsu
My APP:
1. Super Baby Pig (iOS+Android)
2. God Lotto (iOS+Android)
2. Ninja Darts (iOS)
3. Fight Bingo (iOS)

Comments and Discussions

Discussions on this specific version of this article. Add your comments on how to improve this article here. These comments will not be visible on the final published version of this article.