Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Creating Mobile Apps with Appcelerator Titanium

You're reading from  Creating Mobile Apps with Appcelerator Titanium

Product type Book
Published in Oct 2013
Publisher Packt
ISBN-13 9781849519267
Pages 318 pages
Edition 1st Edition
Languages
Author (1):
Christian Brousseau Christian Brousseau
Author Profile Icon Christian Brousseau
Christian Brousseau
Toc

Table of Contents (18) Chapters Close

Creating Mobile Apps with Appcelerator Titanium
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Stopwatch (with Lap Counter) 2. Sili, the assistant that just listens 3. The To-do List 4. Interactive E-book for iPad 5. You've Got to Know When to Hold 'em 6. JRPG – Second to Last Fantasy 7. JRPG – Second to Last Fantasy Online 8. Social Networks 9. Marvels of the World around Us 10. Worldwide Marco Polo References Index

Photo gallery integration


The last segment of this chapter will allow our users to save any picture they like from the application into their device's photo gallery. Both iOS and Android provide their own brand of photo gallery so that each can be addressed specifically.

The very first thing we will do is to add an event handler when the user clicks on the Save button:

btnSave.addEventListener('click', function() {

Android photo gallery integration

In this handler, we will isolate the code specific to Android in a conditional block:

  if (Ti.Android) {

We first need to determine a directory where our photo will be saved on the device. In our case, we will be using the externalStorageDirectory property that is the path to the device's storage (such as an SD card).

    var tempDir = Ti.Filesystem.externalStorageDirectory;

Tip

It is recommended to check if the location is available using the isExternalStoragePresent function before accessing it. This will prevent errors in cases where external storage...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime