Mountain View July JavaScript Meetup at Google

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

2 comments

Comments 1 - 2 of 2 previous next Post a comment

  • + brian.baird brian.baird 1 month ago
    Nice! This is so much easier and efficient. Time is money is the mobile dev game.

    First mover advantage anyone?
  • + carticipate Carticipate, Inc. 4 months ago
    Hi Jeff, sorry I missed the presentation. Awesome code examples. Almost seems simple enough that I could do it.
Post a comment
Embed Video
Edit your comment Cancel

5 Favorites

Mountain View July JavaScript Meetup at Google - Presentation Transcript

  1. Mobile for the rest of us
  2. About Me • @jhaynie • http://blog.jeffhaynie.us • jhaynie@appcelerator.com • #titanium_app on freenode
  3. Appcelerator Empower developers to quickly create and commercialize web, desktop and mobile applications
  4. Appcelerator Products Create, test, and commercialize native mobile and desktop applications with the web technologies you use today. Develop Native iPhone Build Desktop apps Cloud services used for Web development tools and Android apps with that can be deployed testing, packaging, that enable rapid RIA full access to each with one code base on distribution, and development. device’s APIs. the PC, Mac, or Linux analytics. platforms.
  5. Product Architecture Mobile Desktop Titanium Advanced Advanced Advanced APIs APIs APIs Analytics Advertising Social Networking Team Collaboration Appcelerator -  uattro Q -  acebook F -  hare your Project S - Usage Network -  reystripe G - Twitter - Account Management - Events -  ahoo Y Training Support
  6. Titanium • Desktop: Win32, OSX, Linux • Mobile: iPhone and Android
  7. Programming Model Titanium supports JavaScript, HTML, CSS for building mobile applications
  8. UI • Clean separation of Design from Code • UI is constructed via HTML, CSS • JavaScript access to create native controls, native views, windows, etc.
  9. JavaScript • JavaScript is used to program Mobile Features, Access local Resources, Database, Remote Web Services, etc. • Use your favorite JS Toolkit - jQuery,YUI, Dojo, Mootools, etc etc.
  10. App Assembly Titanium SDK compiles (using Titanium Developer) the application using the Mobile SDK into a native application
  11. Mobile APIs Geolocation Accelerometer Gesture Analytics Media App Network Database Platform Filesystem UI
  12. Building the UI • <html> accepted here (including HTML5) • optimized native UI controls • hybrid UI composition
  13. Typical iPhone UI
  14. Typical Android UI
  15. <html>
  16. Native UI views Grouped View Table View
  17. Composite UI
  18. Grouped View Example var groupedView = Titanium.UI.iPhone.createGroupedView(); groupedView.addSection(optionSection); groupedView.addSection(buttonSection); groupedView.addSection(inputSection); groupedView.open({animated:true});
  19. Button Group Section var optionData = [     {title:'Option 1', selected:true},     {title:'Option 2'},     {title:'Option 3'}   ]; var optionSection = Titanium.UI.iPhone.createGroupedSection({header:'Option Group', type:'option', data:optionData}); optionSection.addEventListener('click',function(e) { });
  20. Input Group Section var inputData = [     {title:'Input 1', input:switchInstance, image:'iTunes.png'},     {title:'Sound', input:sliderInstance, image:'Mail.png'},     {title:'Name', input:textInstance},     {title:'Input 2', value:'foo', hasChild:true},     {title:'Input 3'}   ]; var inputSection = Titanium.UI.iPhone.createGroupedSection({header:'Input Group', type:'input', data:inputData}); inputSection.addEventListener('click',function(e) { });
  21. Native UI Controls • Toolbars • Tab Bars • Status Bars • Dialogs • Controls
  22. Databases • var db = Titanium.Database.open('mydb'); db.execute('INSERT INTO DATABASETEST (ID, NAME ) VALUES(?,?)', 1,'Name 1'); db.execute('INSERT INTO DATABASETEST (ID, NAME ) VALUES(?,?)', 2,'Name 2'); db.execute('INSERT INTO DATABASETEST (ID, NAME ) VALUES(?,?)', 3,'Name 3'); db.execute('INSERT INTO DATABASETEST (ID, NAME ) VALUES(?,?)', 4,'Name 4');
  23. Camera Titanium.Media.showCamera( {     success:function(image,details)     {         $("status").innerHTML="Uploading...."+image.url; } });
  24. Video var video = Titanium.Media. createVideoPlayer({ contentURL : "movie.mp4"}); var listenerId = video.addEventListener("complete", function() {    video.removeEventListener('complete', listenerId);    var dlg = Titanium.UI.createAlertDialog({     'title' : 'Video Complete',     'message' : 'video completed',     'buttonNames' : [ 'OK' ]    });    dlg.show(); }); video.play();
  25. Gestures function onShake() {    document.getElementById("status").innerHTML = 'Stop Shaking me';   } var listenerId = Titanium.Gesture.addEventListener("shake", onShake);
  26. Accelerometer Titanium.Accelerometer.addEventListener('update',function(e){    document.getElementById('x').innerHTML = e.x;    document.getElementById('y').innerHTML = e.y;    document.getElementById('z').innerHTML = e.z });
  27. Titanium Info • http://www.appcelerator.com • http://github.com/appcelerator • @appcelerator • #titanium_app on irc.freenode.net

+ Jeff HaynieJeff Haynie, 4 months ago

custom

1085 views, 5 favs, 5 embeds more stats

Jeff Haynie presents Appcelerator's Titanium Mobile more

More info about this document

© All Rights Reserved

Go to text version

  • Total Views 1085
    • 1022 on SlideShare
    • 63 from embeds
  • Comments 2
  • Favorites 5
  • Downloads 11
Most viewed embeds
  • 55 views on http://blog.jeffhaynie.us
  • 5 views on http://ajax.sys-con.com
  • 1 views on http://socialmedia.ulitzer.com
  • 1 views on http://web2.sys-con.com
  • 1 views on http://wireless.sys-con.com

more

All embeds
  • 55 views on http://blog.jeffhaynie.us
  • 5 views on http://ajax.sys-con.com
  • 1 views on http://socialmedia.ulitzer.com
  • 1 views on http://web2.sys-con.com
  • 1 views on http://wireless.sys-con.com

less

Flagged as inappropriate Flag as inappropriate
Flag as inappropriate

Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

Cancel
File a copyright complaint
Having problems? Go to our helpdesk?

Categories