SlideShare a Scribd company logo
1 of 51
Porting Tips:
                         iOS to Android

                         OpenMIC #16
                             @ Exeter University
                                15 Feb 2013




   Elliot Long
   @elroid
Monday, 18 February 13
Agenda
                         • Why port?
                         • UI Structural Considerations
                         • UI Style Considerations
                         • Responsive Design
                         • Testing/Distribution
                         • Android specialties
Monday, 18 February 13
Porting?

                         Port [pohrt] Vb
                         To translate software to run on a different
                         computer and/or operating system. 




Monday, 18 February 13
Porting?

                         Port [pohrt] Vb
                         To rewrite an application so it works on a
                         different platform, using some common
                         assets where possible




Monday, 18 February 13
Why Android?




Monday, 18 February 13
Why not web-apps?

                              e.g.
                           PhoneGap
                          Appcelerator
                             Corona
                          FlashBuilder




Monday, 18 February 13
One size does not fit all



Monday, 18 February 13
One size does not fit all*



Monday, 18 February 13
*...unless you’re making a
                     game




Monday, 18 February 13
So what’s so different?




Monday, 18 February 13
So what’s so different?
                         Buttons, mainly.




Monday, 18 February 13
#1: We don’t need that on-screen back button




Monday, 18 February 13
#2: Menu options are there if you need them




                         [with menu key]   [without menu key]
Monday, 18 February 13
#2: Menu options are there if you need them

                         ...and for compatibilty
                            with older apps....




Monday, 18 February 13
#3a Tabs: Should be at the very least
                                be moved to the top...




Monday, 18 February 13
#3b Tabs: ...and preferably look more android like...




              ActionbarSherlock
                      +
               HoloEverywhere



Monday, 18 February 13
#3b Tabs: ...and preferably look more android like...




            jgilfelt.github.com/android-actionbarstylegenerator
Monday, 18 February 13
#3c Tabs: ...or ideally ditched altogether




Monday, 18 February 13
#3d: Life without tabs: the 3rd way




Monday, 18 February 13
#3d: Life without tabs: the 3rd way




                         github.com/jfeinstein10/SlidingMenu
Monday, 18 February 13
Style: General guidelines


                            •Not quite so rounded
                            •16:9 not 3:2




Monday, 18 February 13
Style: UITableView vs LinearLayout



                                 •No rounded corners
                                 •No lines to the edge!
                                 •No chevrons
                                 •Accordions? Hmm...




Monday, 18 February 13
Style: UITableView vs ListView


                                Separate each row
                                      --or--
                                  Put them in a
                                scrolling rounded
                                     window




Monday, 18 February 13
Style: 9Patch images




                    http://weblookandfeel.com/nine-patch-editor/
         iOS5 equivalent:
         cap insets

Monday, 18 February 13
Style: 9Patch images




               http://weblookandfeel.com/nine-patch-editor/

Monday, 18 February 13
Style: Button states

            In iOS you get lovely
            blueness for free




               No free lunch for
               android, need
               several states for
               all buttons


Monday, 18 February 13
Style: Icons




        http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html

     Tip: Android tablets icons come from the “next bucket
     up” e.g. the Nexus 10 is an xhdpi device, but will use
     icons from the xxhdpi bucket

Monday, 18 February 13
Style: Switch Buttons


                  Not supported by ABS or
                  HoloEverywhere (yet)

                  Pretty easy to do with
                  images (extend
                  CompoundButton or use an
                  ImageView)




Monday, 18 February 13
Style: Fonts


  Can use TrueType fonts
  (like iOS5)

  Not straightforward...

  But do you really need
  them....?




Monday, 18 February 13
Roboto in ICS+




Monday, 18 February 13
Roboto before ICS

                            Roboto Regular
                             Roboto Bold
                             Roboto Italic

                         But you can use roboto.ttf for < ICS


Monday, 18 February 13
Style: Densities




                                     ldpi - 0.5x
                                     mdpi - 1x
                                     hdpi - 1.5x
                                     xhdpi - 2x
                                     xxhdpi - 2.5x?
                         http://developer.android.com/guide/practices/
                                      screens_support.html
Monday, 18 February 13
iPhone 3
                         HTC Dream (G1)
Monday, 18 February 13
Nexus 1
Monday, 18 February 13
HTC Sensation
Monday, 18 February 13
HTC Sensation   iPhone 4s (640x960)
Monday, 18 February 13
Galaxy Nexus
Monday, 18 February 13
Sony Xperia Z
Monday, 18 February 13
Android   iPhone




Monday, 18 February 13
Vodafone 858

Monday, 18 February 13
Responsive Design
                         Do Use:
                         •LinearLayout, RelativeLayout
                         •layout_weight, match_parent, wrap_content
                         •dps for measurements, sp for fonts

                         Do not use:
                         •AbsoluteLayout
                         •px for interface measurements
                         •dp for fonts
                           (sp takes user font size pref into account)


Monday, 18 February 13
Testing & Distribution

                                                iPhone                       Android


                            Type              Simulator                     Emulator

                                        Quicker, not as suitable for      Slower, more
                          Suitability     debugging, esp multi-
                                                 threaded                   accurate

                                            Provisioning                 Share a link to
                         Beta Testing
                                               (doh!)                        APK

                                                                              Up to 50mb
                         Binary Size         Up to 2GB                 +2 x 2GB extension packs



Monday, 18 February 13
Don’t forget - Android
                 does things iOS doesn’t!


Monday, 18 February 13
Android Specialties
    •Background processes




Monday, 18 February 13
Android Specialties
    •Background processes
    •Intent-filter: BROWSABLE




Monday, 18 February 13
Android Specialties
    •Background processes
    •Intent-filter: BROWSABLE
    •Widgets




Monday, 18 February 13
Android Specialties
    •Background processes
    •Intent-filter: BROWSABLE
    •Widgets
    •Rich notifications




Monday, 18 February 13
Android Specialties
    •Background processes
    •Intent-filter: BROWSABLE
    •Widgets
    •Rich notifications
    •NFC




Monday, 18 February 13
Useful Resources
        actionbarsherlock.com                        www.holoeverywhere.com
                           developer.android.com/design
             developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html


                               www.androidpatterns.com

                                    Sliding Menu
                         github.com/jfeinstein10/SlidingMenu


                                Actionbar Style Generator
                 jgilfelt.github.com/android-actionbarstylegenerator

Monday, 18 February 13
Useful Resources




                                www.jetbrains.com/idea




Monday, 18 February 13
Questions?



   Elliot Long
   @elroid




Monday, 18 February 13

More Related Content

Similar to Porting Tips: iOS to Android

From HTML5 to Hardware - Simonyi Conference Budapest April 15
From HTML5 to Hardware - Simonyi Conference Budapest April 15From HTML5 to Hardware - Simonyi Conference Budapest April 15
From HTML5 to Hardware - Simonyi Conference Budapest April 15Jan Jongboom
 
01 Mobile Web Introduction
01 Mobile Web Introduction01 Mobile Web Introduction
01 Mobile Web IntroductionYnon Perek
 
IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2
IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2
IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2Ikinnoveer
 
Native Javascript apps with PhoneGap
Native Javascript apps with PhoneGapNative Javascript apps with PhoneGap
Native Javascript apps with PhoneGapMartin de Keijzer
 
A survey of robotics in Ruby
A survey of robotics in RubyA survey of robotics in Ruby
A survey of robotics in RubyAdam Dill
 
RailsConf 2013: RubyMotion
RailsConf 2013: RubyMotionRailsConf 2013: RubyMotion
RailsConf 2013: RubyMotionBrian Sam-Bodden
 
Mobile vs Desktop
Mobile vs DesktopMobile vs Desktop
Mobile vs DesktopC.T.Co
 
A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023
A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023
A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023Pedro Vicente
 
Hybrid Mobile Web Apps with Sencha Touch 2
Hybrid Mobile Web Apps with Sencha Touch 2Hybrid Mobile Web Apps with Sencha Touch 2
Hybrid Mobile Web Apps with Sencha Touch 2Martin de Keijzer
 
Greg Isenberg: My Million Dollar Product Mistake
Greg Isenberg: My Million Dollar Product MistakeGreg Isenberg: My Million Dollar Product Mistake
Greg Isenberg: My Million Dollar Product MistakeDealmaker Media
 
Codemotion 2013 - presentación cocoa pods
Codemotion  2013 -  presentación cocoa podsCodemotion  2013 -  presentación cocoa pods
Codemotion 2013 - presentación cocoa podsJorge Maroto
 
Building Blocks for the Internet of Things @ Home
Building Blocks for the Internet of Things @ HomeBuilding Blocks for the Internet of Things @ Home
Building Blocks for the Internet of Things @ HomeDavid Janes
 
Using Erlang on the RaspberryPi to interact with the physical world
Using Erlang on the RaspberryPi to interact with the physical worldUsing Erlang on the RaspberryPi to interact with the physical world
Using Erlang on the RaspberryPi to interact with the physical worldBrian Chamberlain
 
Postmortem: "Spellcreepers"
Postmortem: "Spellcreepers"Postmortem: "Spellcreepers"
Postmortem: "Spellcreepers"IndieOutpost
 
Cross-platform tools for mobile application development
Cross-platform tools for mobile application developmentCross-platform tools for mobile application development
Cross-platform tools for mobile application developmentbertouttier
 

Similar to Porting Tips: iOS to Android (17)

From HTML5 to Hardware - Simonyi Conference Budapest April 15
From HTML5 to Hardware - Simonyi Conference Budapest April 15From HTML5 to Hardware - Simonyi Conference Budapest April 15
From HTML5 to Hardware - Simonyi Conference Budapest April 15
 
01 Mobile Web Introduction
01 Mobile Web Introduction01 Mobile Web Introduction
01 Mobile Web Introduction
 
IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2
IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2
IA Ondernemen met innovatieve apps. Wim Vanhenden. Sessie 2
 
Paranoid Android
Paranoid AndroidParanoid Android
Paranoid Android
 
Native Javascript apps with PhoneGap
Native Javascript apps with PhoneGapNative Javascript apps with PhoneGap
Native Javascript apps with PhoneGap
 
A survey of robotics in Ruby
A survey of robotics in RubyA survey of robotics in Ruby
A survey of robotics in Ruby
 
RailsConf 2013: RubyMotion
RailsConf 2013: RubyMotionRailsConf 2013: RubyMotion
RailsConf 2013: RubyMotion
 
Mobile vs Desktop
Mobile vs DesktopMobile vs Desktop
Mobile vs Desktop
 
A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023
A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023
A Multiplatform, Multi-Tenant Challenge - Droidcon Lisbon 2023
 
Hybrid Mobile Web Apps with Sencha Touch 2
Hybrid Mobile Web Apps with Sencha Touch 2Hybrid Mobile Web Apps with Sencha Touch 2
Hybrid Mobile Web Apps with Sencha Touch 2
 
Greg Isenberg: My Million Dollar Product Mistake
Greg Isenberg: My Million Dollar Product MistakeGreg Isenberg: My Million Dollar Product Mistake
Greg Isenberg: My Million Dollar Product Mistake
 
Codemotion 2013 - presentación cocoa pods
Codemotion  2013 -  presentación cocoa podsCodemotion  2013 -  presentación cocoa pods
Codemotion 2013 - presentación cocoa pods
 
Building Blocks for the Internet of Things @ Home
Building Blocks for the Internet of Things @ HomeBuilding Blocks for the Internet of Things @ Home
Building Blocks for the Internet of Things @ Home
 
iOS Ecosystem
iOS EcosystemiOS Ecosystem
iOS Ecosystem
 
Using Erlang on the RaspberryPi to interact with the physical world
Using Erlang on the RaspberryPi to interact with the physical worldUsing Erlang on the RaspberryPi to interact with the physical world
Using Erlang on the RaspberryPi to interact with the physical world
 
Postmortem: "Spellcreepers"
Postmortem: "Spellcreepers"Postmortem: "Spellcreepers"
Postmortem: "Spellcreepers"
 
Cross-platform tools for mobile application development
Cross-platform tools for mobile application developmentCross-platform tools for mobile application development
Cross-platform tools for mobile application development
 

Recently uploaded

Call Girls Meghani Nagar 7397865700 Independent Call Girls
Call Girls Meghani Nagar 7397865700  Independent Call GirlsCall Girls Meghani Nagar 7397865700  Independent Call Girls
Call Girls Meghani Nagar 7397865700 Independent Call Girlsssuser7cb4ff
 
Passbook project document_april_21__.pdf
Passbook project document_april_21__.pdfPassbook project document_april_21__.pdf
Passbook project document_april_21__.pdfvaibhavkanaujia
 
Architecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfArchitecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfSumit Lathwal
 
Kindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpKindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpmainac1
 
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一F La
 
Introduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptxIntroduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptxnewslab143
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...narwatsonia7
 
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一Fi L
 
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024CristobalHeraud
 
Call Girls Aslali 7397865700 Ridhima Hire Me Full Night
Call Girls Aslali 7397865700 Ridhima Hire Me Full NightCall Girls Aslali 7397865700 Ridhima Hire Me Full Night
Call Girls Aslali 7397865700 Ridhima Hire Me Full Nightssuser7cb4ff
 
Call Girls Bapu Nagar 7397865700 Ridhima Hire Me Full Night
Call Girls Bapu Nagar 7397865700 Ridhima Hire Me Full NightCall Girls Bapu Nagar 7397865700 Ridhima Hire Me Full Night
Call Girls Bapu Nagar 7397865700 Ridhima Hire Me Full Nightssuser7cb4ff
 
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Narsimha murthy
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricksabhishekparmar618
 
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`dajasot375
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130Suhani Kapoor
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdfSwaraliBorhade
 

Recently uploaded (20)

Call Girls Meghani Nagar 7397865700 Independent Call Girls
Call Girls Meghani Nagar 7397865700  Independent Call GirlsCall Girls Meghani Nagar 7397865700  Independent Call Girls
Call Girls Meghani Nagar 7397865700 Independent Call Girls
 
Passbook project document_april_21__.pdf
Passbook project document_april_21__.pdfPassbook project document_april_21__.pdf
Passbook project document_april_21__.pdf
 
Architecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfArchitecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdf
 
Kindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpKindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUp
 
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
 
Introduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptxIntroduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptx
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
 
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
 
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
 
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
Call Girls Aslali 7397865700 Ridhima Hire Me Full Night
Call Girls Aslali 7397865700 Ridhima Hire Me Full NightCall Girls Aslali 7397865700 Ridhima Hire Me Full Night
Call Girls Aslali 7397865700 Ridhima Hire Me Full Night
 
Call Girls Bapu Nagar 7397865700 Ridhima Hire Me Full Night
Call Girls Bapu Nagar 7397865700 Ridhima Hire Me Full NightCall Girls Bapu Nagar 7397865700 Ridhima Hire Me Full Night
Call Girls Bapu Nagar 7397865700 Ridhima Hire Me Full Night
 
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricks
 
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
 
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf
 

Porting Tips: iOS to Android

  • 1. Porting Tips: iOS to Android OpenMIC #16 @ Exeter University 15 Feb 2013 Elliot Long @elroid Monday, 18 February 13
  • 2. Agenda • Why port? • UI Structural Considerations • UI Style Considerations • Responsive Design • Testing/Distribution • Android specialties Monday, 18 February 13
  • 3. Porting? Port [pohrt] Vb To translate software to run on a different computer and/or operating system.  Monday, 18 February 13
  • 4. Porting? Port [pohrt] Vb To rewrite an application so it works on a different platform, using some common assets where possible Monday, 18 February 13
  • 6. Why not web-apps? e.g. PhoneGap Appcelerator Corona FlashBuilder Monday, 18 February 13
  • 7. One size does not fit all Monday, 18 February 13
  • 8. One size does not fit all* Monday, 18 February 13
  • 9. *...unless you’re making a game Monday, 18 February 13
  • 10. So what’s so different? Monday, 18 February 13
  • 11. So what’s so different? Buttons, mainly. Monday, 18 February 13
  • 12. #1: We don’t need that on-screen back button Monday, 18 February 13
  • 13. #2: Menu options are there if you need them [with menu key] [without menu key] Monday, 18 February 13
  • 14. #2: Menu options are there if you need them ...and for compatibilty with older apps.... Monday, 18 February 13
  • 15. #3a Tabs: Should be at the very least be moved to the top... Monday, 18 February 13
  • 16. #3b Tabs: ...and preferably look more android like... ActionbarSherlock + HoloEverywhere Monday, 18 February 13
  • 17. #3b Tabs: ...and preferably look more android like... jgilfelt.github.com/android-actionbarstylegenerator Monday, 18 February 13
  • 18. #3c Tabs: ...or ideally ditched altogether Monday, 18 February 13
  • 19. #3d: Life without tabs: the 3rd way Monday, 18 February 13
  • 20. #3d: Life without tabs: the 3rd way github.com/jfeinstein10/SlidingMenu Monday, 18 February 13
  • 21. Style: General guidelines •Not quite so rounded •16:9 not 3:2 Monday, 18 February 13
  • 22. Style: UITableView vs LinearLayout •No rounded corners •No lines to the edge! •No chevrons •Accordions? Hmm... Monday, 18 February 13
  • 23. Style: UITableView vs ListView Separate each row --or-- Put them in a scrolling rounded window Monday, 18 February 13
  • 24. Style: 9Patch images http://weblookandfeel.com/nine-patch-editor/ iOS5 equivalent: cap insets Monday, 18 February 13
  • 25. Style: 9Patch images http://weblookandfeel.com/nine-patch-editor/ Monday, 18 February 13
  • 26. Style: Button states In iOS you get lovely blueness for free No free lunch for android, need several states for all buttons Monday, 18 February 13
  • 27. Style: Icons http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html Tip: Android tablets icons come from the “next bucket up” e.g. the Nexus 10 is an xhdpi device, but will use icons from the xxhdpi bucket Monday, 18 February 13
  • 28. Style: Switch Buttons Not supported by ABS or HoloEverywhere (yet) Pretty easy to do with images (extend CompoundButton or use an ImageView) Monday, 18 February 13
  • 29. Style: Fonts Can use TrueType fonts (like iOS5) Not straightforward... But do you really need them....? Monday, 18 February 13
  • 30. Roboto in ICS+ Monday, 18 February 13
  • 31. Roboto before ICS Roboto Regular Roboto Bold Roboto Italic But you can use roboto.ttf for < ICS Monday, 18 February 13
  • 32. Style: Densities ldpi - 0.5x mdpi - 1x hdpi - 1.5x xhdpi - 2x xxhdpi - 2.5x? http://developer.android.com/guide/practices/ screens_support.html Monday, 18 February 13
  • 33. iPhone 3 HTC Dream (G1) Monday, 18 February 13
  • 34. Nexus 1 Monday, 18 February 13
  • 36. HTC Sensation iPhone 4s (640x960) Monday, 18 February 13
  • 37. Galaxy Nexus Monday, 18 February 13
  • 38. Sony Xperia Z Monday, 18 February 13
  • 39. Android iPhone Monday, 18 February 13
  • 40. Vodafone 858 Monday, 18 February 13
  • 41. Responsive Design Do Use: •LinearLayout, RelativeLayout •layout_weight, match_parent, wrap_content •dps for measurements, sp for fonts Do not use: •AbsoluteLayout •px for interface measurements •dp for fonts (sp takes user font size pref into account) Monday, 18 February 13
  • 42. Testing & Distribution iPhone Android Type Simulator Emulator Quicker, not as suitable for Slower, more Suitability debugging, esp multi- threaded accurate Provisioning Share a link to Beta Testing (doh!) APK Up to 50mb Binary Size Up to 2GB +2 x 2GB extension packs Monday, 18 February 13
  • 43. Don’t forget - Android does things iOS doesn’t! Monday, 18 February 13
  • 44. Android Specialties •Background processes Monday, 18 February 13
  • 45. Android Specialties •Background processes •Intent-filter: BROWSABLE Monday, 18 February 13
  • 46. Android Specialties •Background processes •Intent-filter: BROWSABLE •Widgets Monday, 18 February 13
  • 47. Android Specialties •Background processes •Intent-filter: BROWSABLE •Widgets •Rich notifications Monday, 18 February 13
  • 48. Android Specialties •Background processes •Intent-filter: BROWSABLE •Widgets •Rich notifications •NFC Monday, 18 February 13
  • 49. Useful Resources actionbarsherlock.com www.holoeverywhere.com developer.android.com/design developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html www.androidpatterns.com Sliding Menu github.com/jfeinstein10/SlidingMenu Actionbar Style Generator jgilfelt.github.com/android-actionbarstylegenerator Monday, 18 February 13
  • 50. Useful Resources www.jetbrains.com/idea Monday, 18 February 13
  • 51. Questions? Elliot Long @elroid Monday, 18 February 13