SlideShare a Scribd company logo
1 of 47
Download to read offline
@ryancanulla | developer.litl.com
Developing For The TV Companion
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What will be available to developers?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s available to developers?
Keyboard . Trackpad . Gestures
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s available to developers?
Trackpad . Gestures . Accelerometer
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s available to developers?
Gestures . Accelerometer . Microphone
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s available to developers?
Accelerometer . Microphone . Webcam
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s available to developers?
Microphone . Webcam . Keyboard
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What do I need to build channels now?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What do I need to build channels now?
litl os SDK
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What do I need to build channels now?
litl os simulator
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How can I get a more realistic experience?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How can I get a more realistic experience?
Use your phone.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How can I get a more realistic experience?
Connect Over WiFi
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Start in your favorite IDE.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Build your channel.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Test in the simulator.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Add remotes in the simulator.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Use an Android or iOS device.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Go to the settings tab.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Enable remote app connections.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Run your Android / iOS app.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Test on the device.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Prepare the USB stick.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What’s the developer workflow?
Plug it into the device :-)
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How “I” manage the service/view.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How “I” manage the service/view.
LitlServiceManager()
Where “my” service lives
How I pass my service around my application
Singleton
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How “I” manage the service/view.
LitlViewManager()
Listen for events from the service manager and react
accordingly
Ensures that your view change stuff is simple, clean, and
tucked away nicely
I usually have a class for each view (ie. Card, Focus Channel)
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What is overscan?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
What is overscan?
What is overscan?
Cropping of your content when it’s displayed on TV’s
Varies from TV to TV, but usually 5-10%
Occurs on both old & new TV sets
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How do I deal with overscan?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How do I deal with overscan?
Liquify your layout.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How do I deal with overscan?
Trust in the ViewBase()
All of my view objects extend ViewBase
You can now call myViewObject.setView(width, height)
Override sizeUpdated() and add in your layout logic
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How do I deal with overscan?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
How do I deal with overscan?
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Break.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
That was flash.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
LitlRemoteManager()
Instantiate in the ServiceManager
Extends RemoteHandlerManager
Handles the connection/disconnection of remotes
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
LitlRemoteManager()continued...
Constructor needs a reference to the service as well as
a factory class
Don’t forget to call the start() method
Override onRemoteConnected/onRemoteDisconnected
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
RemoteFactory()
Implements IRemoteHandlerFactory
Instantiates a Remote() factory object
This is a “set it and forget it” type of class :-)
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
Remote()
Extends AccelerometerEventHandler or
KeypadRemoteHandler
Implements IRemoteHandler
Override protected function onAccelerometerEvent()
Can override pair() & unpair() methods
Wednesday, November 10, 2010
@ryancanulla
developer.litl.com
Managing remotes and accelerometer data.
Wednesday, November 10, 2010

More Related Content

Similar to RIA Unleashed - Developing for the TV with litl os

We're not designing posters, here!
We're not designing posters, here!We're not designing posters, here!
We're not designing posters, here!André Luís
 
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScriptSencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScriptDavid Kaneda
 
OpenStack Summit, A Community of Service Providers
OpenStack Summit, A Community of Service ProvidersOpenStack Summit, A Community of Service Providers
OpenStack Summit, A Community of Service ProvidersAndrew Shafer
 
Successful development without QA
Successful development without QASuccessful development without QA
Successful development without QAPavel Gabriel
 
ZOMG WHY IS THIS CODE SO SLOW
ZOMG WHY IS THIS CODE SO SLOWZOMG WHY IS THIS CODE SO SLOW
ZOMG WHY IS THIS CODE SO SLOWAaron Patterson
 
Presentation Xplore
Presentation XplorePresentation Xplore
Presentation XploreXcode
 
Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...
Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...
Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...Amazon Web Services
 
Poisoning Rubinius: The _why and How
Poisoning Rubinius: The _why and HowPoisoning Rubinius: The _why and How
Poisoning Rubinius: The _why and HowBrian Ford
 
In depth with html5 java2days 2010
In depth with html5 java2days 2010In depth with html5 java2days 2010
In depth with html5 java2days 2010Mystic Coders, LLC
 
Is the Freemium Model Right for your Plugin?
Is the Freemium Model Right for your Plugin?Is the Freemium Model Right for your Plugin?
Is the Freemium Model Right for your Plugin?Kim Gjerstad
 
Servicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyectoServicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyectoOrlando Del Aguila
 
Quick & Dirty Mobile Web with jQuery Mobile
Quick & Dirty Mobile Web with jQuery MobileQuick & Dirty Mobile Web with jQuery Mobile
Quick & Dirty Mobile Web with jQuery MobileTroy Miles
 
Macruby - RubyConf Presentation 2010
Macruby - RubyConf Presentation 2010Macruby - RubyConf Presentation 2010
Macruby - RubyConf Presentation 2010Matt Aimonetti
 
Making burgers with JavaScript
Making burgers with JavaScriptMaking burgers with JavaScript
Making burgers with JavaScriptDiogo Antunes
 
Web Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To ComplexWeb Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To ComplexBrian Hogan
 
Samsung galaxy tab presentatie tijden UC-Day.nl
Samsung galaxy tab presentatie tijden UC-Day.nlSamsung galaxy tab presentatie tijden UC-Day.nl
Samsung galaxy tab presentatie tijden UC-Day.nlVincent Everts
 

Similar to RIA Unleashed - Developing for the TV with litl os (20)

We're not designing posters, here!
We're not designing posters, here!We're not designing posters, here!
We're not designing posters, here!
 
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScriptSencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
 
OpenStack Summit, A Community of Service Providers
OpenStack Summit, A Community of Service ProvidersOpenStack Summit, A Community of Service Providers
OpenStack Summit, A Community of Service Providers
 
Successful development without QA
Successful development without QASuccessful development without QA
Successful development without QA
 
ZOMG WHY IS THIS CODE SO SLOW
ZOMG WHY IS THIS CODE SO SLOWZOMG WHY IS THIS CODE SO SLOW
ZOMG WHY IS THIS CODE SO SLOW
 
Human APIs
Human APIsHuman APIs
Human APIs
 
Html5 Development
Html5 DevelopmentHtml5 Development
Html5 Development
 
Presentation Xplore
Presentation XplorePresentation Xplore
Presentation Xplore
 
Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...
Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...
Telco: Voice-Command Personal Agent Service with AWS Cloud (MBL202) | AWS re:...
 
Poisoning Rubinius: The _why and How
Poisoning Rubinius: The _why and HowPoisoning Rubinius: The _why and How
Poisoning Rubinius: The _why and How
 
How to get involved in Mozilla
How to get involved in MozillaHow to get involved in Mozilla
How to get involved in Mozilla
 
Html5 Apps
Html5 AppsHtml5 Apps
Html5 Apps
 
In depth with html5 java2days 2010
In depth with html5 java2days 2010In depth with html5 java2days 2010
In depth with html5 java2days 2010
 
Is the Freemium Model Right for your Plugin?
Is the Freemium Model Right for your Plugin?Is the Freemium Model Right for your Plugin?
Is the Freemium Model Right for your Plugin?
 
Servicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyectoServicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyecto
 
Quick & Dirty Mobile Web with jQuery Mobile
Quick & Dirty Mobile Web with jQuery MobileQuick & Dirty Mobile Web with jQuery Mobile
Quick & Dirty Mobile Web with jQuery Mobile
 
Macruby - RubyConf Presentation 2010
Macruby - RubyConf Presentation 2010Macruby - RubyConf Presentation 2010
Macruby - RubyConf Presentation 2010
 
Making burgers with JavaScript
Making burgers with JavaScriptMaking burgers with JavaScript
Making burgers with JavaScript
 
Web Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To ComplexWeb Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To Complex
 
Samsung galaxy tab presentatie tijden UC-Day.nl
Samsung galaxy tab presentatie tijden UC-Day.nlSamsung galaxy tab presentatie tijden UC-Day.nl
Samsung galaxy tab presentatie tijden UC-Day.nl
 

Recently uploaded

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 

RIA Unleashed - Developing for the TV with litl os