How to integrate sencha touch plus phone gap in android
-
I have developed an application using sencha touch .This application containg 5 tabs which performs different operations . In that 5 tabs one tab functionality is it conatins some buttons like (Camera , Capture) now when user clicks on that camera button i need to capture a photo and i need to display that photo to the user.This functionality i have a acheived using phone gap.But i don't know how to integrate this code in sencha .
-
Answer:
Though it can be done using PhoneGap, it can also be done using Sencha Touch's Camera feature. PhoneGap Camera API var imageView = Ext.create('Ext.Img', { src:'', .... }); .... .... // PhoneGap Camera API to capture image .. navigator.camera.getPicture(onSuccess, onFail, { quality: 50 }); function onSuccess(imageData) { imageView.setSrc("data:image/jpeg;base64," + imageData); } function onFail(message) { alert('Failed because: ' + message); } Using Sencha Touch Camera feature var imageView = Ext.create('Ext.image',{ src:'', .... .... }); Ext.device.Camera.capture({ success: function(image) { imageView.setSrc(image); }, quality: 75, width: 200, height: 200, destination: 'data' });
Yerram Naveen at Stack Overflow Visit the source
Related Q & A:
- How to integrate Salesforce with php?Best solution by Salesforce
- How to integrate Twitter?Best solution by Stack Overflow
- How to integrate paytm wallet for an Android application?Best solution by Stack Overflow
- How do you setup a google account on an android phone?Best solution by Yahoo! Answers
- Do I have to have Yahoo! Mail Plus to use the Android Yahoo! Mail app?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.