Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example, native applications like Instagram have their own interface to take photos. Does PhoneGap / Cordova allow you to construct a similar interface?

share|improve this question

3 Answers

The cordova 'core' has a camera.getPicture function that allows you to access the camera (across all platforms, iOS, Android ...). However, the UI for this action is platform specific. In other words, the way your application uses the camera will look different on each platform.

If you want to customise the camera experience you are going to have to write your own plugin. This involves writing a native implementation for each of the platforms you wish to cover, and also the JavaScript 'bindings' for your plugin.

At this point you start to loose many of the key advantages of using Cordova! Perhaps consider alternatives like Xamarin.

share|improve this answer

Yes, you'd just have to build you own Camera plugin.

share|improve this answer
OK. Is there anything special about this type of plugin? Would it be written in HTML, CSS, JS as well? Would this be a JavaScript plugin that would sit on top of whatever the device's camera is capturing, as when using an app like Instagram? Where in the Cordova application folder structure is it recommended this type of plugin live? – AndrewHenderson Dec 20 '12 at 5:50
More than likely you'd need to implement your own native plugin for this type of functionality. – Simon MacDonald Dec 21 '12 at 19:52

As of my thoughts are. Yes but that would require that you changed the core of phonegap.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.