SlideShare a Scribd company logo
1 of 46
Download to read offline
Disclaimer

-  The views expressed in this presentation are my personal
   views.


-  Any opinions, comments, solutions or other commentary
   expressed by me are based on my experience.


-  This presentation is presented for educational purposes
   and is therefore supplementary and not to be considered
   exhaustive.



                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Building
Swing vs. Android
  Applications
                    By Johnny Hujol
Who am I

-  A French leaving in Boston.
-  Software Engineer for a US pharmaceuticals company.

-  10+ years in Biotech/Pharmaceuticals sector developing
   scientific applications.
-  10+ years in Java.
-  1+ year in Android.

-  Co-published book on Java called
‘Java for Bioinformatics and Biomedical Applications’.

•  10+ years kitesurfing 
•  4th time in Taiba, Ceara, Brasil.
                              Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Agenda

-  History

-  Swing Application

-  Android Application

-  Development Environment

-  Comparison

-  Building Applications

-  Conclusion

                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
History

-  1995: Oak (Java) was released for Sun machines.

-  1996: Java 1 initial release.

-  1998: Swing part of JDK 1.2.

-  September 23, 2008: Android 1.0.

-  July 28, 2011: JSE 7.0.

-  October 2011: Android 4.0 (Ice Cream Sandwich).


                             Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App




            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App - Anatomy

-  JFrame, JButton, custom Java classes, events,
   exceptions, etc.

-  Implement algorithms, business rules, etc.

-  Connect to some storage to deal with data i.e. database,
   web service, file system, memory, etc.

-  Might have multiple background tasks running.

-  Offline or online app.

-  Goal: help people to do things better.
                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App - Life Cycle

-  Main() method as starting point of program.




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App – Multi-Threaded

-  A Swing application is multi-threaded by nature.

-  Single thread model for Event Dispatching Thread (EDT).

-  Importance of (EDT) for UI responsiveness.

-  EventQueue.invokeLater(Runnable).

-  SwingWorker doInBackground() and done().




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App – Multi-Threaded




                Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App – Multi-Threaded

-  Do heavy work in the background.

-  More fine and advanced control with java.util.concurrent
   package.

-  Executors to do background works to keep UI responsive.

-  FutureTask (java.util.concurrent).




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App – Multi-Threaded




                Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App - More

-  Exception handling policy based on requirements.

-  Custom exceptions.

-  Asynchronous messaging mechanism with java.awt.event
   i.e. event classes and listener classes.

-  System events i.e. MouseEvent, KeyboardEvent, screen,
   etc.

-  Semantic events i.e. ActionEvent, TextEvent, etc.

-  Events are always fired in the EDT.
                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Swing App – And More

-  Internationalization.

-  2D/3D/OpenGL, Media APIs, etc…

-  Debugging tools.

-  Logging, Tests, Profiling APIs.

-  Compilers, JVMs.

-  Encryption.

-  More…
                             Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android Application




                 Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App - Anatomy

-  Activity, TextView, custom Java classes, exceptions, etc.

-  Implement algorithms, business rules, etc.

-  Connect to some storage to deal with data i.e. database,
   web service, file system, SD card, etc.

-  Might have multiple background tasks running.

-  Offline or online app.

-  Goal: help people to do things better.

                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App - Components

-  Activity = UI.

-  Service = background tasks.

-  Content Provider: sharing data uniformly from multiple
   apps.

-  Broadcast receiver = big announcer across components or
   apps i.e. a broader event mechanism.




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App – Life Cycle

-  Components Life Cycle well defined.

-  Activity (UI) starts with onCreate() in UI thread.




-  Visible lifetime between onStart() and onStop().

-  Foreground lifetime between onResume() and onPause().

                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App – Activity




                 Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App - Multi-Threaded

-  Single thread model for UI toolkit.

-  The Andoid UI toolkit is not thread-safe.

-  Do not block the UI thread.

-  Do not access the Android UI toolkit outside the UI
   thread.




                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App - Multi-Threaded

-  Activity.runOnUiThread(Runnable)




-  View.post(Runnable)

-  View.postDelayed(Runnable, long)

                          Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App - Multi-Threaded

-  AsyncTask similar to SwingWorker.




-  Package java.util.concurrent for Executors, etc.



                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App - More

-  Exception handling policy based on requirements.

-  Custom exceptions.

-  Separation of layout from UI logic with XML.

-  Notifications with Toast, Status Bar and Progress.

-  Listeners.

-  Sensor APIs for GPS, camera, telephony, accelerometer,
   etc.

                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Android App – And More

-  Internalionalization.

-  2D/3D, OpenGL, etc.

-  Database, SD card, FS access.

-  Configuration for multiple device specs.

-  Encryption.

-  And More…


                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Questions so far?




      Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Development Environment

-  I use IntelliJ IDEA for Swing and Android apps.

-  Ant.

-  Android command line to build initial Android project.

-  Adb for interacting with USB plugged devices.

-  XML layout profiler with Hierarchy Viewer.

-  Android project libraries to share between apps.


                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Development Environment

-  LogCat.

-  Junit for testing, logging APIs.

-  Monkey and monkeyrunner.

-  Emulator.

-  SensorSimulator.

-  AndroidScreencast.


                             Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Development Environment




               Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Life Cycle

-  Life Cycle for Android is well defined.

-  All Android activities changes through states the same
   way.

-  Save/restore state in the foreground lifetime onResume()
   and onPause().

-  Important to release resources and kill background tasks
   when going on onPause().

-  Save state in onPause() needs to execute quickly.

                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Life Cycle

-  Cannot ‘quit’ an Android application.

-  Allow fast switching to Android apps.

-  Users use many apps back and forth.

-  Similar to opening lots of apps on computer when
   working.




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Multi-Threaded

-  Transfer knowledge of Swing multi-threaded apps.

-  Less frequent cases on Android apps than Swing apps.

-  Simpler Android apps = less synchronization.

-  New methods runOnUiThread, AsyncTack (SwingWorker).

-  Cancelling policy more important on Android apps.

-  Does user allow background services.


                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Storage

-  API for local Database (DB) like SQLLite.

-  API for Web Services like Amazon S3.

-  File System (FS) on device or remote.

-  Harder to test web services on the emulator.




                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Storage

-  Internal storage with Context class.



-  External storage i.e. SD card.




                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Device Resources

-  Battery is the most precious resource on Android devices.

-  Do not write intensive computation in the background.

-  Screen size very small with 2 mode landscape & portrait.

-  Memory because no ‘quit’ manage the listeners i.e. like
   GPS location manager, etc.




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Device Resources

-  Code impact on memory.

-  Extends listener instead of creating inner class.




-  Use primitive int instead of Enum class = less memory.



                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Network

-  Checking availability.




                            Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Development Cycle

-  Emulator might not be consistent to real device.

-  Test directly on device more than emulator.

-  Faster release because less features.

-  Simpler application architecture on Android.

-  Send logging info to network.

-  Once deployed on production harder to debug.


                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Comparison – Sensors

-  Native support on Android devices.

-  Available on Swing through integration.

-  Can have different specs depending on device.

-  Getting easier with WiFi-Direct, Bluetooth, etc.

-  Location based application more natural on Android.




                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Questions so far?




      Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Building Apps

-  Mobile nature of Android apps.

-  New mobile paradigms to manipulate UI.

-  Swing will adopt mobile paradigms.

-  Android devices, computers and the cloud.

-  Component model of Android apps.

-  Similarity between 2 platforms.


                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Building Apps - Architecture

-  Importance of separation of UI, business logic and storage
   in design of an app.

-  Can reuse non-UI logic from Swing i.e. Data Access
   Object, etc.

-  Easier to build an Android app from a multi-tier Swing
   apps, no need to test business logic again.

-  Allow offline vs. online mode.

-  Develop and reuse libraries.

                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Building Apps - Software Engineering

-  Get your users involved.

-  Deploy often.

-  Continuously testing the system.

-  Design Patterns.

-  Design for reusability and maintenance.

-  Network back-end for intensive computation tasks.

-  Use primitive int in Android apps.
                              Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Building Apps - Assurance Quality

-  Mock, Unit Test, MonkeyTest (Android), etc.

-  Code static analysis.

-  Use code reviews.

-  Performance on memory with profiler.

-  Multi-threaded apps easier on Android.

-  Use logging API.


                           Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Conclusion

-  Easy transition from Swing to/from Android.

-  Faster to develop Android app.

-  Well defined Life Cycle of Android app.

-  Keep a design of apps simple.

-  Allow offline and online mode for apps.

-  Design apps more in a mobile way.

-  Cloud based applications.
                               Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
Questions & Answers




       Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
References

•  Android
  –  http://developer.android.com


•  Screencast
  –  http://code.google.com/p/androidscreencast/



•  SensorSimulator
  –  http://code.google.com/p/openintents/wiki/SensorSimulator

•  Android Way on Multitasking
  -  http://developer.android.com/resources/articles/multitasking-android-way.html




                                          Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09

More Related Content

What's hot

Android technology prepared by Hritika Raj (Shivalik college of engg.)
Android technology prepared by Hritika Raj (Shivalik college of engg.)Android technology prepared by Hritika Raj (Shivalik college of engg.)
Android technology prepared by Hritika Raj (Shivalik college of engg.)Hritika Raj
 
Android Operating System (Androrid OS)
Android Operating System (Androrid OS)Android Operating System (Androrid OS)
Android Operating System (Androrid OS)Siddharth Belbase
 
Android - A brief introduction
Android - A brief introductionAndroid - A brief introduction
Android - A brief introductionRoshan Gautam
 
Presentation on Android operating system
Presentation on Android operating systemPresentation on Android operating system
Presentation on Android operating systemSalma Begum
 
Android technology- Advantages & Limitations
Android technology- Advantages & LimitationsAndroid technology- Advantages & Limitations
Android technology- Advantages & LimitationsVaibhav Dixit
 
Comparison of mobile operating systems
Comparison of mobile operating systemsComparison of mobile operating systems
Comparison of mobile operating systemsSumit kumar Dhanuk
 
Pendrive to pendrive data transfer without pc
Pendrive to pendrive data transfer without pcPendrive to pendrive data transfer without pc
Pendrive to pendrive data transfer without pcVishnu Kudumula
 
ppt based on android technology with great animations
ppt based on android technology with great animationsppt based on android technology with great animations
ppt based on android technology with great animationsHriday Garg
 

What's hot (20)

Android technology prepared by Hritika Raj (Shivalik college of engg.)
Android technology prepared by Hritika Raj (Shivalik college of engg.)Android technology prepared by Hritika Raj (Shivalik college of engg.)
Android technology prepared by Hritika Raj (Shivalik college of engg.)
 
windows
windowswindows
windows
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Mac_os_final_piyush
Mac_os_final_piyushMac_os_final_piyush
Mac_os_final_piyush
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Android Operating System (Androrid OS)
Android Operating System (Androrid OS)Android Operating System (Androrid OS)
Android Operating System (Androrid OS)
 
Android - A brief introduction
Android - A brief introductionAndroid - A brief introduction
Android - A brief introduction
 
Android & IOS
Android & IOSAndroid & IOS
Android & IOS
 
Android Operating System(OS)
Android Operating System(OS)Android Operating System(OS)
Android Operating System(OS)
 
Ios operating system
Ios operating systemIos operating system
Ios operating system
 
Chrome os
Chrome os Chrome os
Chrome os
 
Presentation on Android operating system
Presentation on Android operating systemPresentation on Android operating system
Presentation on Android operating system
 
Android technology- Advantages & Limitations
Android technology- Advantages & LimitationsAndroid technology- Advantages & Limitations
Android technology- Advantages & Limitations
 
Comparison of mobile operating systems
Comparison of mobile operating systemsComparison of mobile operating systems
Comparison of mobile operating systems
 
Pendrive to pendrive data transfer without pc
Pendrive to pendrive data transfer without pcPendrive to pendrive data transfer without pc
Pendrive to pendrive data transfer without pc
 
Android presentation slide
Android presentation slideAndroid presentation slide
Android presentation slide
 
PPT on Android
PPT on AndroidPPT on Android
PPT on Android
 
ppt based on android technology with great animations
ppt based on android technology with great animationsppt based on android technology with great animations
ppt based on android technology with great animations
 
Linux Solaris
Linux SolarisLinux Solaris
Linux Solaris
 
Android
Android Android
Android
 

Similar to Building Swing and Android Apps

Angular js mobile jsday 2014 - Verona 14 may
Angular js mobile   jsday 2014 - Verona 14 mayAngular js mobile   jsday 2014 - Verona 14 may
Angular js mobile jsday 2014 - Verona 14 mayLuciano Amodio
 
NaazAfrinResume (2)
NaazAfrinResume (2)NaazAfrinResume (2)
NaazAfrinResume (2)Naaz Afrin
 
UrvashiShrivastavaResumeLatest2017
UrvashiShrivastavaResumeLatest2017UrvashiShrivastavaResumeLatest2017
UrvashiShrivastavaResumeLatest2017Urvashi Shrivastava
 
Videogram - Building a product with Sencha Touch
Videogram - Building a product with Sencha TouchVideogram - Building a product with Sencha Touch
Videogram - Building a product with Sencha TouchAlexander Wilhelm
 
Sogeti - Android tech track presentation - 24 february 2011
Sogeti - Android tech track presentation - 24 february 2011Sogeti - Android tech track presentation - 24 february 2011
Sogeti - Android tech track presentation - 24 february 2011Kenneth van Rumste
 
Mobile web application development
Mobile web application developmentMobile web application development
Mobile web application developmentVince Aggrippino
 
Gnana Prasuna B_5.5 years
Gnana Prasuna B_5.5 yearsGnana Prasuna B_5.5 years
Gnana Prasuna B_5.5 yearsGnana Bocha
 
MOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARI
MOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARIMOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARI
MOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARISivaSankari36
 
Android - Open Source Bridge 2011
Android - Open Source Bridge 2011Android - Open Source Bridge 2011
Android - Open Source Bridge 2011sullis
 
NaazAfrinResume (2)
NaazAfrinResume (2)NaazAfrinResume (2)
NaazAfrinResume (2)Naaz Afrin
 
Karthik Balasubramanian (Resume)
Karthik Balasubramanian (Resume)Karthik Balasubramanian (Resume)
Karthik Balasubramanian (Resume)karthik_bala
 
Python for the Mobile and Web
Python for the Mobile and WebPython for the Mobile and Web
Python for the Mobile and WebDerek Kiong
 
Cross platform app a comparative study
Cross platform app  a comparative studyCross platform app  a comparative study
Cross platform app a comparative studyijcsit
 
Research on Comparative Study of Different Mobile Operating System_Part-2
Research on Comparative Study of Different Mobile Operating System_Part-2Research on Comparative Study of Different Mobile Operating System_Part-2
Research on Comparative Study of Different Mobile Operating System_Part-2Zulkar Naim
 
iOS vs android .pptx
iOS  vs android .pptxiOS  vs android .pptx
iOS vs android .pptxabid masood
 

Similar to Building Swing and Android Apps (20)

Ramesh iOS Profile
Ramesh iOS ProfileRamesh iOS Profile
Ramesh iOS Profile
 
Projects
ProjectsProjects
Projects
 
Angular js mobile jsday 2014 - Verona 14 may
Angular js mobile   jsday 2014 - Verona 14 mayAngular js mobile   jsday 2014 - Verona 14 may
Angular js mobile jsday 2014 - Verona 14 may
 
NaazAfrinResume (2)
NaazAfrinResume (2)NaazAfrinResume (2)
NaazAfrinResume (2)
 
UrvashiShrivastavaResumeLatest2017
UrvashiShrivastavaResumeLatest2017UrvashiShrivastavaResumeLatest2017
UrvashiShrivastavaResumeLatest2017
 
Videogram - Building a product with Sencha Touch
Videogram - Building a product with Sencha TouchVideogram - Building a product with Sencha Touch
Videogram - Building a product with Sencha Touch
 
Sogeti - Android tech track presentation - 24 february 2011
Sogeti - Android tech track presentation - 24 february 2011Sogeti - Android tech track presentation - 24 february 2011
Sogeti - Android tech track presentation - 24 february 2011
 
Mobile web application development
Mobile web application developmentMobile web application development
Mobile web application development
 
Gnana Prasuna B_5.5 years
Gnana Prasuna B_5.5 yearsGnana Prasuna B_5.5 years
Gnana Prasuna B_5.5 years
 
MOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARI
MOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARIMOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARI
MOBILE APPLICATIONS DEVELOPMENT -ANDROID BY SIVASANKARI
 
Resume
ResumeResume
Resume
 
Android - Open Source Bridge 2011
Android - Open Source Bridge 2011Android - Open Source Bridge 2011
Android - Open Source Bridge 2011
 
NaazAfrinResume (2)
NaazAfrinResume (2)NaazAfrinResume (2)
NaazAfrinResume (2)
 
Karthik Balasubramanian (Resume)
Karthik Balasubramanian (Resume)Karthik Balasubramanian (Resume)
Karthik Balasubramanian (Resume)
 
Python for the Mobile and Web
Python for the Mobile and WebPython for the Mobile and Web
Python for the Mobile and Web
 
Cross platform app a comparative study
Cross platform app  a comparative studyCross platform app  a comparative study
Cross platform app a comparative study
 
Ravi Sundriyal
Ravi SundriyalRavi Sundriyal
Ravi Sundriyal
 
Research on Comparative Study of Different Mobile Operating System_Part-2
Research on Comparative Study of Different Mobile Operating System_Part-2Research on Comparative Study of Different Mobile Operating System_Part-2
Research on Comparative Study of Different Mobile Operating System_Part-2
 
iOS vs android .pptx
iOS  vs android .pptxiOS  vs android .pptx
iOS vs android .pptx
 
Android
AndroidAndroid
Android
 

Recently uploaded

SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 

Recently uploaded (20)

SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 

Building Swing and Android Apps

  • 1. Disclaimer -  The views expressed in this presentation are my personal views. -  Any opinions, comments, solutions or other commentary expressed by me are based on my experience. -  This presentation is presented for educational purposes and is therefore supplementary and not to be considered exhaustive. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 2. Building Swing vs. Android Applications By Johnny Hujol
  • 3. Who am I -  A French leaving in Boston. -  Software Engineer for a US pharmaceuticals company. -  10+ years in Biotech/Pharmaceuticals sector developing scientific applications. -  10+ years in Java. -  1+ year in Android. -  Co-published book on Java called ‘Java for Bioinformatics and Biomedical Applications’. •  10+ years kitesurfing  •  4th time in Taiba, Ceara, Brasil. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 4. Agenda -  History -  Swing Application -  Android Application -  Development Environment -  Comparison -  Building Applications -  Conclusion Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 5. History -  1995: Oak (Java) was released for Sun machines. -  1996: Java 1 initial release. -  1998: Swing part of JDK 1.2. -  September 23, 2008: Android 1.0. -  July 28, 2011: JSE 7.0. -  October 2011: Android 4.0 (Ice Cream Sandwich). Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 6. Swing App Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 7. Swing App - Anatomy -  JFrame, JButton, custom Java classes, events, exceptions, etc. -  Implement algorithms, business rules, etc. -  Connect to some storage to deal with data i.e. database, web service, file system, memory, etc. -  Might have multiple background tasks running. -  Offline or online app. -  Goal: help people to do things better. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 8. Swing App - Life Cycle -  Main() method as starting point of program. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 9. Swing App – Multi-Threaded -  A Swing application is multi-threaded by nature. -  Single thread model for Event Dispatching Thread (EDT). -  Importance of (EDT) for UI responsiveness. -  EventQueue.invokeLater(Runnable). -  SwingWorker doInBackground() and done(). Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 10. Swing App – Multi-Threaded Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 11. Swing App – Multi-Threaded -  Do heavy work in the background. -  More fine and advanced control with java.util.concurrent package. -  Executors to do background works to keep UI responsive. -  FutureTask (java.util.concurrent). Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 12. Swing App – Multi-Threaded Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 13. Swing App - More -  Exception handling policy based on requirements. -  Custom exceptions. -  Asynchronous messaging mechanism with java.awt.event i.e. event classes and listener classes. -  System events i.e. MouseEvent, KeyboardEvent, screen, etc. -  Semantic events i.e. ActionEvent, TextEvent, etc. -  Events are always fired in the EDT. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 14. Swing App – And More -  Internationalization. -  2D/3D/OpenGL, Media APIs, etc… -  Debugging tools. -  Logging, Tests, Profiling APIs. -  Compilers, JVMs. -  Encryption. -  More… Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 15. Android Application Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 16. Android App - Anatomy -  Activity, TextView, custom Java classes, exceptions, etc. -  Implement algorithms, business rules, etc. -  Connect to some storage to deal with data i.e. database, web service, file system, SD card, etc. -  Might have multiple background tasks running. -  Offline or online app. -  Goal: help people to do things better. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 17. Android App - Components -  Activity = UI. -  Service = background tasks. -  Content Provider: sharing data uniformly from multiple apps. -  Broadcast receiver = big announcer across components or apps i.e. a broader event mechanism. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 18. Android App – Life Cycle -  Components Life Cycle well defined. -  Activity (UI) starts with onCreate() in UI thread. -  Visible lifetime between onStart() and onStop(). -  Foreground lifetime between onResume() and onPause(). Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 19. Android App – Activity Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 20. Android App - Multi-Threaded -  Single thread model for UI toolkit. -  The Andoid UI toolkit is not thread-safe. -  Do not block the UI thread. -  Do not access the Android UI toolkit outside the UI thread. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 21. Android App - Multi-Threaded -  Activity.runOnUiThread(Runnable) -  View.post(Runnable) -  View.postDelayed(Runnable, long) Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 22. Android App - Multi-Threaded -  AsyncTask similar to SwingWorker. -  Package java.util.concurrent for Executors, etc. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 23. Android App - More -  Exception handling policy based on requirements. -  Custom exceptions. -  Separation of layout from UI logic with XML. -  Notifications with Toast, Status Bar and Progress. -  Listeners. -  Sensor APIs for GPS, camera, telephony, accelerometer, etc. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 24. Android App – And More -  Internalionalization. -  2D/3D, OpenGL, etc. -  Database, SD card, FS access. -  Configuration for multiple device specs. -  Encryption. -  And More… Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 25. Questions so far? Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 26. Development Environment -  I use IntelliJ IDEA for Swing and Android apps. -  Ant. -  Android command line to build initial Android project. -  Adb for interacting with USB plugged devices. -  XML layout profiler with Hierarchy Viewer. -  Android project libraries to share between apps. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 27. Development Environment -  LogCat. -  Junit for testing, logging APIs. -  Monkey and monkeyrunner. -  Emulator. -  SensorSimulator. -  AndroidScreencast. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 28. Development Environment Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 29. Comparison – Life Cycle -  Life Cycle for Android is well defined. -  All Android activities changes through states the same way. -  Save/restore state in the foreground lifetime onResume() and onPause(). -  Important to release resources and kill background tasks when going on onPause(). -  Save state in onPause() needs to execute quickly. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 30. Comparison – Life Cycle -  Cannot ‘quit’ an Android application. -  Allow fast switching to Android apps. -  Users use many apps back and forth. -  Similar to opening lots of apps on computer when working. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 31. Comparison – Multi-Threaded -  Transfer knowledge of Swing multi-threaded apps. -  Less frequent cases on Android apps than Swing apps. -  Simpler Android apps = less synchronization. -  New methods runOnUiThread, AsyncTack (SwingWorker). -  Cancelling policy more important on Android apps. -  Does user allow background services. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 32. Comparison – Storage -  API for local Database (DB) like SQLLite. -  API for Web Services like Amazon S3. -  File System (FS) on device or remote. -  Harder to test web services on the emulator. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 33. Comparison – Storage -  Internal storage with Context class. -  External storage i.e. SD card. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 34. Comparison – Device Resources -  Battery is the most precious resource on Android devices. -  Do not write intensive computation in the background. -  Screen size very small with 2 mode landscape & portrait. -  Memory because no ‘quit’ manage the listeners i.e. like GPS location manager, etc. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 35. Comparison – Device Resources -  Code impact on memory. -  Extends listener instead of creating inner class. -  Use primitive int instead of Enum class = less memory. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 36. Comparison – Network -  Checking availability. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 37. Comparison – Development Cycle -  Emulator might not be consistent to real device. -  Test directly on device more than emulator. -  Faster release because less features. -  Simpler application architecture on Android. -  Send logging info to network. -  Once deployed on production harder to debug. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 38. Comparison – Sensors -  Native support on Android devices. -  Available on Swing through integration. -  Can have different specs depending on device. -  Getting easier with WiFi-Direct, Bluetooth, etc. -  Location based application more natural on Android. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 39. Questions so far? Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 40. Building Apps -  Mobile nature of Android apps. -  New mobile paradigms to manipulate UI. -  Swing will adopt mobile paradigms. -  Android devices, computers and the cloud. -  Component model of Android apps. -  Similarity between 2 platforms. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 41. Building Apps - Architecture -  Importance of separation of UI, business logic and storage in design of an app. -  Can reuse non-UI logic from Swing i.e. Data Access Object, etc. -  Easier to build an Android app from a multi-tier Swing apps, no need to test business logic again. -  Allow offline vs. online mode. -  Develop and reuse libraries. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 42. Building Apps - Software Engineering -  Get your users involved. -  Deploy often. -  Continuously testing the system. -  Design Patterns. -  Design for reusability and maintenance. -  Network back-end for intensive computation tasks. -  Use primitive int in Android apps. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 43. Building Apps - Assurance Quality -  Mock, Unit Test, MonkeyTest (Android), etc. -  Code static analysis. -  Use code reviews. -  Performance on memory with profiler. -  Multi-threaded apps easier on Android. -  Use logging API. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 44. Conclusion -  Easy transition from Swing to/from Android. -  Faster to develop Android app. -  Well defined Life Cycle of Android app. -  Keep a design of apps simple. -  Allow offline and online mode for apps. -  Design apps more in a mobile way. -  Cloud based applications. Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 45. Questions & Answers Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09
  • 46. References •  Android –  http://developer.android.com •  Screencast –  http://code.google.com/p/androidscreencast/ •  SensorSimulator –  http://code.google.com/p/openintents/wiki/SensorSimulator •  Android Way on Multitasking -  http://developer.android.com/resources/articles/multitasking-android-way.html Swing vs. Android - Johnny Hujol - CEJUG Fortaleza, Brasil - 2011/12/09