SlideShare a Scribd company logo
Motorola Mobility
                                                                                 Peter van der Linden
                                                                                   Android




Webtop
HTML5
MOTOROLA   Stylized M        Motorola Trademark Holdings, LLC.               .
                     . © 2011 Motorola Mobility, Inc. All rights reserved.
MOTODEV                              2




1

2

3 Webtop

4 HTML5




    © 2011 Motorola Mobility, Inc.
MOTODEV                                                 3




  • Motorola ATRIX 4G MB860

  • “                  ” 11mm

  • 4.0"                            , qHD(540 x 960),
    240 dpi, 24

  • 1GHz                            NVIDIA Tegra 2


  • Android 2.2.1(Froyo)

  • 1930 mAh

   © 2011 Motorola Mobility, Inc.
MOTODEV                                    4



   RAM/ROM


      • 1 GB RAM

      • 2 GB

      • 10.7 GB

      •                32 GB        SDHC




   © 2011 Motorola Mobility, Inc.
MOTODEV                                   5




    • W-CDMA 850/1900/2100
    • GSM 850/900/1800/1900
    • HSDPA 14Mbps(                 10)
    • Wi-Fi, Bluetooth…




   © 2011 Motorola Mobility, Inc.
MOTODEV                                            6




   •
         o              :5        ,      ,   LED
         o              : VGA(640x480)

   •
         o   720p HD, 30fps
         o                 HDMI




   © 2011 Motorola Mobility, Inc.
MOTODEV                                       7




      •
      •                   (         )
      •
      •
      •
            o
            o                           API




   © 2011 Motorola Mobility, Inc.
MOTODEV                                     8




       • Android WebKit

       • Adobe® Flash®

       • webtop
         o File Manager(            )

       • Entertainment Center(          )




   © 2011 Motorola Mobility, Inc.
MOTODEV                             9



                          :


           •            , 2.4 lbs
           • 11.6"
           •          ,
           • USB     2 , ATRIX
           •
           •
             o ATRIX




   © 2011 Motorola Mobility, Inc.
MOTODEV                                        10


                        :
 HD



   •                          USB   HDMI
   •                          HD       HD TV
   •
         o   USB
         o   USB
   •



   © 2011 Motorola Mobility, Inc.
MOTODEV                                                       11



   ATRIX

  • SDK
    o http://developer.motorola.com/docstools/tools/

  • Webtop
    o http://developer.motorola.com/docstools/library/

  •
       o    http://developer.motorola.com/products/atrix-mb860/




   © 2011 Motorola Mobility, Inc.
MOTOROLA
MOTOROLA  Stylized Stylized MMotorola Trademark Holdings, LLC.
                   M                 Motorola Trademark Holdings, LLC.               .   .
                    . © 2011 © 2011 Motorola Mobility, Inc. Allreserved.
                             . Motorola Mobility, Inc. All rights rights reserved.
MOTODEV                                                        13



                                      API


 •

 • Motorola                           API(FFC   Motorola   )

 • 2.2(Froyo)

 •                     2.3(Gingerbread)
       o   Gingerbread         Google API
           Froyo




     © 2011 Motorola Mobility, Inc.
MOTODEV                                                                   14




                             API


 • com.motorola.hardware.frontcamera.FrontCamera                    lib

 •                          : static Camera getFrontCamera();

 •                Android Camera                        .


 •                                    !




                                                                .
     © 2011 Motorola Mobility, Inc.
MOTODEV                                             15




                           API

import com.motorola.hardware.frontcamera.FrontCamera;
import android.hardware.Camera;

Camera frontCam = FrontCamera.getFrontCamera();
   // frontCam
   //
   ...
frontCam.release(); //




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                            16




<uses-library android:name="com.motorola.hardware.frontcamera"/>
<uses-feature android:name="android.hardware.camera"/>
<uses-permission android:name="android.permission.CAMERA"/>




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                          17




•


• ATRIX SDK
  jar
    o   ffc_api_stub.jar

•      jar                                                  “Motorola
    Front-Facing Camera API(Motorola                       API)”

    o   http://developer.motorola.com/docstools/library/
        motorola-front-facing-camera-api/

    © 2011 Motorola Mobility, Inc.
MOTOROLA
MOTOROLA  Stylized Stylized MMotorola Trademark Holdings, LLC.
                   M                 Motorola Trademark Holdings, LLC.               .   .
                    . © 2011 © 2011 Motorola Mobility, Inc. Allreserved.
                             . Motorola Mobility, Inc. All rights rights reserved.
MOTODEV                                                  19



   Motorola                         API


    •



    •                                     (Reflection)
                          API               .




   © 2011 Motorola Mobility, Inc.
MOTODEV                                            20



                          (Reflection)   –


<uses-library
android:name="com.motorola.hardware.frontcamera”
android:required="false" />




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                         21



                          (Reflection)          –

private static class ConditionalFrontCamera {
      public static Camera getFrontCamera(){
          try {
                Method fcMethod = Class.forName(
                       "com.motorola.hardware.frontcamera.FrontCamera")
                               .getDeclaredMethod("getFrontCamera",
(Class[])null);

               if (fcMethod==null) return null;
        return (Camera) fcMethod.invoke(
                                       (Object[])null,
(Object[])null);

                      } catch (Exception ex){
                          return null;
                      }
           }
}

    © 2011 Motorola Mobility, Inc.
MOTODEV                                       22



                          (Reflection)   -


   Camera frontCam =
   ConditionalFrontCamera.getFrontCamera();

   if(frontCam != null) {
       //
   } else {
       //
   }




   © 2011 Motorola Mobility, Inc.
Tegra 2

     MOTOROLA
MOTOROLA  Stylized Stylized MMotorola Trademark Holdings, LLC.
                   M                 Motorola Trademark Holdings, LLC.               .   .
                    . © 2011 © 2011 Motorola Mobility, Inc. Allreserved.
                             . Motorola Mobility, Inc. All rights rights reserved.
MOTODEV                                                            24



                            PC

                                                 CPU




                              GPU                            RAM




                                    PCI   SATA         USB
   © 2011 Motorola Mobility, Inc.
MOTODEV                                                       25



   Tegra 2 –

  •                                 - -
        o                           ,           , CPU   GPU

  •                        ARM              7     CPU
        o               1 GHz
        o

        –



        –

        o                             ...

   © 2011 Motorola Mobility, Inc.
Webtop

     MOTOROLA
MOTOROLA  Stylized Stylized MMotorola Trademark Holdings, LLC.
                   M                 Motorola Trademark Holdings, LLC.               .   .
                    . © 2011 © 2011 Motorola Mobility, Inc. Allreserved.
                             . Motorola Mobility, Inc. All rights rights reserved.
MOTODEV                                       27



   Motorola




                                    CPU


                                          .
   © 2011 Motorola Mobility, Inc.
MOTODEV
                                    Webtop                  28




                                                 HTML, js 1.0
   © 2011 Motorola Mobility, Inc.      Android
MOTODEV                                                                29




                                    © 2011 Motorola Mobility, Inc.   1.0
   © 2011 Motorola Mobility, Inc.
MOTODEV                                                        30



   Webtop
   •

   • Motorola ATRIX 4G              Motorola
           /

   • 11.5                                 Firefox 3.6.13


   •                                              !




                                                           .
   © 2011 Motorola Mobility, Inc.
HTML5

     MOTOROLA
MOTOROLA  Stylized Stylized MMotorola Trademark Holdings, LLC.
                   M                 Motorola Trademark Holdings, LLC.               .   .
                    . © 2011 © 2011 Motorola Mobility, Inc. Allreserved.
                             . Motorola Mobility, Inc. All rights rights reserved.
MOTODEV                                     32



   HTML 5


      • W3C                          HTML
      •                             ,   :
         •
         •
         •
         •
         •




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                         33



   HTML 5


      •

                   section, article, aside, hgroup, header,
                   footer, nav, figure, video, audio, canvas,
                   datalist, embed, mark




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                      34


   Firefox 3.6

   •                                  (         )

   •                                 ,              (
                                          )

   • <audio>                        WAV   OGG

   •     :
   http://developer.motorola.com/docstools/library/webtop-
   application-overview/

   © 2011 Motorola Mobility, Inc.
MOTODEV                                               35



   Firefox 3.6


     • Javascript                     <canvas>   2D

     •

                         ( /                )

     •                              Javascript




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                                 36


   Canvas(                              )   2D
    •                                                      .
                                    .
    <canvas id="myc" width="500" height="300"></canvas>
    <script>
     function supportsCanvas() {
       return !!document.createElement('canvas').getContext;
     }

    var head = new Image();                      head.src="head.jpg”;

    var myc = document.getElementById("myc");
    var cxt = myc.getContext("2d");

    head.onload = function () {
        cxt.drawImage(head, 0, 0);
    }
   © 2011 Motorola Mobility, Inc.
MOTODEV                                                             37




    •                                             .
                                    .

        function supportsLocalStorage() {
              return ('localStorage' in window)
                 && window['localStorage']!==null;
         }

        try {
                     var msg = "localStorage is working OK <br>";
                     localStorage.setItem("key", msg );
                   } catch (e) {
                     document.write("Excpn in local storage”);
                   }
                   document.write( localStorage.getItem("key") );

   © 2011 Motorola Mobility, Inc.
MOTODEV                                                      38




    •                                               .
                                    .
    function supportsGeolocation() {
           return !!navigator.geolocation;
     }
    function savePos(pos) {
           var lat = pos.coords.latitude;
           var lon = pos.coords.longitude;
    }
     try {
        navigator.geolocation.getCurrentPosition(savePos);
     } catch (e) {

  http://www.mozilla.com/en-US/firefox/geolocation/ :


   © 2011 Motorola Mobility, Inc.
MOTODEV                             39




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                        40



                                    : developer.motorola.com
  •
  – http://community.developer.motorola.com/

  •
  – MOTODEV Studio:                            (           ,
          ,          )                                  IDE
  – App Validator: Android


  •      (Twitter)
  – Appsum11kr

  •
  – http://developer.motorola.com/products/xoom/
   © 2011 Motorola Mobility, Inc.
MOTODEV                                                     41




                                                      ?
                                      - #appsum11kr


                         community-developer.motorola.com




   © 2011 Motorola Mobility, Inc.
MOTODEV                             42




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                                               43




                                                         Apache               2
           .
Copyright © 2010, Android Open Source Project. All rights reserved(                        ).

Apache                                ,      2.0("        ");
                  .                                                   :
http://www.apache.org/licenses/LICENSE-2.0.


                                                           “              ”       .
                                                            .




   © 2011 Motorola Mobility, Inc.
MOTODEV                                                                                                                             44




                                                                                     BSD                                        .
Copyright © 2010-2011, Motorola, Inc. All rights reserved(                                         ).

                                         2                                                                              .
                                                         ,                                                          .
2                                                            ,
    /                                            .
                                                                                                   Motorola, Inc.
                                             .

                                                                 "           "                                  (
                                                                                       )       .
                                                                     ,   ,       ,         ,                (
                  ,     ,                            ,                                             )                                     ,
                                 (                                           )
                                     ,                                                                                      .




        © 2011 Motorola Mobility, Inc.
MOTODEV                             45




   © 2011 Motorola Mobility, Inc.

More Related Content

PDF
Ovi store ppt_serbia
PDF
Jure Sustersic Monetization through Ovi Services
PDF
Nokia Developer Offering Update
PDF
Software development with qt
PDF
Java me introduction
PDF
Mobile user experience intro
PPTX
çiğdem ertem tübi̇sad@kampus açılış konuşması
PDF
Universal Design for Learning + Technology Teams = Success for All Students 1...
Ovi store ppt_serbia
Jure Sustersic Monetization through Ovi Services
Nokia Developer Offering Update
Software development with qt
Java me introduction
Mobile user experience intro
çiğdem ertem tübi̇sad@kampus açılış konuşması
Universal Design for Learning + Technology Teams = Success for All Students 1...

Viewers also liked (20)

PPTX
Tv Tbig Ben
PPT
Lekcje przy pozyskiwaniu inwestora
PDF
PDF
e-Healthcare Infrastructural Research
PDF
T2, Week 10
PPTX
Getting Your App Discovered: Android Market & Beyond
PDF
Beyond English - Make Your Android App a Global Success
PPT
Designing Apps for Motorla Xoom Tablet
PPT
Migrating JavaME Apps to Android
PDF
HTML5 vs Native Android: Smart Enterprises for the Future
PDF
Top Tips for Android UIs
PPT
Using the Motorola MOTODEV i1 SDK add-on
PPT
Discover the Opportunity with Android
PDF
The Enterprise Dilemma: Native vs. Web
PPT
Introducing Fragments
PDF
Taking Advantage of Webtop
PPTX
Working with Multiple Android Screens
PPT
Getting the Magic on Android Tablets
PDF
Using the NDK and Renderscript
PPTX
MOTODEV App Validator
Tv Tbig Ben
Lekcje przy pozyskiwaniu inwestora
e-Healthcare Infrastructural Research
T2, Week 10
Getting Your App Discovered: Android Market & Beyond
Beyond English - Make Your Android App a Global Success
Designing Apps for Motorla Xoom Tablet
Migrating JavaME Apps to Android
HTML5 vs Native Android: Smart Enterprises for the Future
Top Tips for Android UIs
Using the Motorola MOTODEV i1 SDK add-on
Discover the Opportunity with Android
The Enterprise Dilemma: Native vs. Web
Introducing Fragments
Taking Advantage of Webtop
Working with Multiple Android Screens
Getting the Magic on Android Tablets
Using the NDK and Renderscript
MOTODEV App Validator
Ad

Similar to Taking Advantage of Webtop (20)

PDF
Building Quality Into Your Apps Through Testing
PDF
An Overview of The Android Ecosystem
PDF
Motorola+EX226+specification
PDF
NEWLUG May 2010 Presentation - Android
PPTX
Kill the Laptop!
PDF
Picking Realistic Secrets In motorola
PDF
Especificaciones Droid razr hd
PDF
Hoja de especificaciones del Droid razr hd
PDF
Business overview
PPTX
Htc strategy
PDF
Honeycomb 3.1 MTP 解説
PPTX
Motorola Solutions: Enterprise Mobile Computing Evolution 4.0
PDF
Firefox OS
PDF
Mobile World Congress 2011 Overview
PPTX
Your First Adobe Flash Application for Android
PPTX
Motorola mobility
PPTX
PDF
Conferencia de Prensa CES 2013
PDF
MOTO G Interactive USER GUIDE
PDF
Samsung galaxy note ii 4 g android phone, titanium gray (verizon wireless)
Building Quality Into Your Apps Through Testing
An Overview of The Android Ecosystem
Motorola+EX226+specification
NEWLUG May 2010 Presentation - Android
Kill the Laptop!
Picking Realistic Secrets In motorola
Especificaciones Droid razr hd
Hoja de especificaciones del Droid razr hd
Business overview
Htc strategy
Honeycomb 3.1 MTP 解説
Motorola Solutions: Enterprise Mobile Computing Evolution 4.0
Firefox OS
Mobile World Congress 2011 Overview
Your First Adobe Flash Application for Android
Motorola mobility
Conferencia de Prensa CES 2013
MOTO G Interactive USER GUIDE
Samsung galaxy note ii 4 g android phone, titanium gray (verizon wireless)
Ad

More from Motorola Mobility - MOTODEV (16)

PPT
Beautifully Usable, Multiple Screens Too
PDF
Diseñando aplicaciones para el Motorola XOOM
PDF
Presentación de los fragmentos
PDF
Gráficos cada vez más rápidos. Cómo usar NDK y RenderScript
PDF
Consejos principales para Android UI Cómo alcanzar la magia en los tablets
PDF
Cómo agregar calidad a sus aplicaciones mediante pruebas
PDF
Cómo aprovechar Webtop Cómo HTML5 mejora la experiencia del usuario
PDF
Principais dicas para UIs do Android
PDF
Gráficos cada vez mais rápidos utilização de NDK e Renderscript
PDF
Como integrar qualidade aos seus aplicativos através de testes
PDF
Tirando vantagem do webtop como o html5 aprimora a experiência do usuário de ...
PDF
Introdução a fragmentos
PDF
Desenvolvimento de aplicativos para o tablet Motorola XOOM
PDF
Top Tips for Android UIs - Getting the Magic on Tablets
PPT
Dial Know More by Lori Fraleigh from Motorola Mobility
PPT
Designing Apps for the Motorola XOOM
Beautifully Usable, Multiple Screens Too
Diseñando aplicaciones para el Motorola XOOM
Presentación de los fragmentos
Gráficos cada vez más rápidos. Cómo usar NDK y RenderScript
Consejos principales para Android UI Cómo alcanzar la magia en los tablets
Cómo agregar calidad a sus aplicaciones mediante pruebas
Cómo aprovechar Webtop Cómo HTML5 mejora la experiencia del usuario
Principais dicas para UIs do Android
Gráficos cada vez mais rápidos utilização de NDK e Renderscript
Como integrar qualidade aos seus aplicativos através de testes
Tirando vantagem do webtop como o html5 aprimora a experiência do usuário de ...
Introdução a fragmentos
Desenvolvimento de aplicativos para o tablet Motorola XOOM
Top Tips for Android UIs - Getting the Magic on Tablets
Dial Know More by Lori Fraleigh from Motorola Mobility
Designing Apps for the Motorola XOOM

Recently uploaded (20)

PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Approach and Philosophy of On baking technology
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Modernizing your data center with Dell and AMD
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPT
Teaching material agriculture food technology
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Electronic commerce courselecture one. Pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Encapsulation theory and applications.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Approach and Philosophy of On baking technology
Reach Out and Touch Someone: Haptics and Empathic Computing
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
The AUB Centre for AI in Media Proposal.docx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Modernizing your data center with Dell and AMD
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Teaching material agriculture food technology
20250228 LYD VKU AI Blended-Learning.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Mobile App Security Testing_ A Comprehensive Guide.pdf
Understanding_Digital_Forensics_Presentation.pptx
Encapsulation_ Review paper, used for researhc scholars
Electronic commerce courselecture one. Pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
NewMind AI Weekly Chronicles - August'25 Week I
Encapsulation theory and applications.pdf

Taking Advantage of Webtop

  • 1. Motorola Mobility Peter van der Linden Android Webtop HTML5 MOTOROLA Stylized M Motorola Trademark Holdings, LLC. . . © 2011 Motorola Mobility, Inc. All rights reserved.
  • 2. MOTODEV 2 1 2 3 Webtop 4 HTML5 © 2011 Motorola Mobility, Inc.
  • 3. MOTODEV 3 • Motorola ATRIX 4G MB860 • “ ” 11mm • 4.0" , qHD(540 x 960), 240 dpi, 24 • 1GHz NVIDIA Tegra 2 • Android 2.2.1(Froyo) • 1930 mAh © 2011 Motorola Mobility, Inc.
  • 4. MOTODEV 4 RAM/ROM • 1 GB RAM • 2 GB • 10.7 GB • 32 GB SDHC © 2011 Motorola Mobility, Inc.
  • 5. MOTODEV 5 • W-CDMA 850/1900/2100 • GSM 850/900/1800/1900 • HSDPA 14Mbps( 10) • Wi-Fi, Bluetooth… © 2011 Motorola Mobility, Inc.
  • 6. MOTODEV 6 • o :5 , , LED o : VGA(640x480) • o 720p HD, 30fps o HDMI © 2011 Motorola Mobility, Inc.
  • 7. MOTODEV 7 • • ( ) • • • o o API © 2011 Motorola Mobility, Inc.
  • 8. MOTODEV 8 • Android WebKit • Adobe® Flash® • webtop o File Manager( ) • Entertainment Center( ) © 2011 Motorola Mobility, Inc.
  • 9. MOTODEV 9 : • , 2.4 lbs • 11.6" • , • USB 2 , ATRIX • • o ATRIX © 2011 Motorola Mobility, Inc.
  • 10. MOTODEV 10 : HD • USB HDMI • HD HD TV • o USB o USB • © 2011 Motorola Mobility, Inc.
  • 11. MOTODEV 11 ATRIX • SDK o http://developer.motorola.com/docstools/tools/ • Webtop o http://developer.motorola.com/docstools/library/ • o http://developer.motorola.com/products/atrix-mb860/ © 2011 Motorola Mobility, Inc.
  • 12. MOTOROLA MOTOROLA Stylized Stylized MMotorola Trademark Holdings, LLC. M Motorola Trademark Holdings, LLC. . . . © 2011 © 2011 Motorola Mobility, Inc. Allreserved. . Motorola Mobility, Inc. All rights rights reserved.
  • 13. MOTODEV 13 API • • Motorola API(FFC Motorola ) • 2.2(Froyo) • 2.3(Gingerbread) o Gingerbread Google API Froyo © 2011 Motorola Mobility, Inc.
  • 14. MOTODEV 14 API • com.motorola.hardware.frontcamera.FrontCamera lib • : static Camera getFrontCamera(); • Android Camera . • ! . © 2011 Motorola Mobility, Inc.
  • 15. MOTODEV 15 API import com.motorola.hardware.frontcamera.FrontCamera; import android.hardware.Camera; Camera frontCam = FrontCamera.getFrontCamera(); // frontCam // ... frontCam.release(); // © 2011 Motorola Mobility, Inc.
  • 16. MOTODEV 16 <uses-library android:name="com.motorola.hardware.frontcamera"/> <uses-feature android:name="android.hardware.camera"/> <uses-permission android:name="android.permission.CAMERA"/> © 2011 Motorola Mobility, Inc.
  • 17. MOTODEV 17 • • ATRIX SDK jar o ffc_api_stub.jar • jar “Motorola Front-Facing Camera API(Motorola API)” o http://developer.motorola.com/docstools/library/ motorola-front-facing-camera-api/ © 2011 Motorola Mobility, Inc.
  • 18. MOTOROLA MOTOROLA Stylized Stylized MMotorola Trademark Holdings, LLC. M Motorola Trademark Holdings, LLC. . . . © 2011 © 2011 Motorola Mobility, Inc. Allreserved. . Motorola Mobility, Inc. All rights rights reserved.
  • 19. MOTODEV 19 Motorola API • • (Reflection) API . © 2011 Motorola Mobility, Inc.
  • 20. MOTODEV 20 (Reflection) – <uses-library android:name="com.motorola.hardware.frontcamera” android:required="false" /> © 2011 Motorola Mobility, Inc.
  • 21. MOTODEV 21 (Reflection) – private static class ConditionalFrontCamera { public static Camera getFrontCamera(){ try { Method fcMethod = Class.forName( "com.motorola.hardware.frontcamera.FrontCamera") .getDeclaredMethod("getFrontCamera", (Class[])null); if (fcMethod==null) return null; return (Camera) fcMethod.invoke( (Object[])null, (Object[])null); } catch (Exception ex){ return null; } } } © 2011 Motorola Mobility, Inc.
  • 22. MOTODEV 22 (Reflection) - Camera frontCam = ConditionalFrontCamera.getFrontCamera(); if(frontCam != null) { // } else { // } © 2011 Motorola Mobility, Inc.
  • 23. Tegra 2 MOTOROLA MOTOROLA Stylized Stylized MMotorola Trademark Holdings, LLC. M Motorola Trademark Holdings, LLC. . . . © 2011 © 2011 Motorola Mobility, Inc. Allreserved. . Motorola Mobility, Inc. All rights rights reserved.
  • 24. MOTODEV 24 PC CPU GPU RAM PCI SATA USB © 2011 Motorola Mobility, Inc.
  • 25. MOTODEV 25 Tegra 2 – • - - o , , CPU GPU • ARM 7 CPU o 1 GHz o – – o ... © 2011 Motorola Mobility, Inc.
  • 26. Webtop MOTOROLA MOTOROLA Stylized Stylized MMotorola Trademark Holdings, LLC. M Motorola Trademark Holdings, LLC. . . . © 2011 © 2011 Motorola Mobility, Inc. Allreserved. . Motorola Mobility, Inc. All rights rights reserved.
  • 27. MOTODEV 27 Motorola CPU . © 2011 Motorola Mobility, Inc.
  • 28. MOTODEV Webtop 28 HTML, js 1.0 © 2011 Motorola Mobility, Inc. Android
  • 29. MOTODEV 29 © 2011 Motorola Mobility, Inc. 1.0 © 2011 Motorola Mobility, Inc.
  • 30. MOTODEV 30 Webtop • • Motorola ATRIX 4G Motorola / • 11.5 Firefox 3.6.13 • ! . © 2011 Motorola Mobility, Inc.
  • 31. HTML5 MOTOROLA MOTOROLA Stylized Stylized MMotorola Trademark Holdings, LLC. M Motorola Trademark Holdings, LLC. . . . © 2011 © 2011 Motorola Mobility, Inc. Allreserved. . Motorola Mobility, Inc. All rights rights reserved.
  • 32. MOTODEV 32 HTML 5 • W3C HTML • , : • • • • • © 2011 Motorola Mobility, Inc.
  • 33. MOTODEV 33 HTML 5 • section, article, aside, hgroup, header, footer, nav, figure, video, audio, canvas, datalist, embed, mark © 2011 Motorola Mobility, Inc.
  • 34. MOTODEV 34 Firefox 3.6 • ( ) • , ( ) • <audio> WAV OGG • : http://developer.motorola.com/docstools/library/webtop- application-overview/ © 2011 Motorola Mobility, Inc.
  • 35. MOTODEV 35 Firefox 3.6 • Javascript <canvas> 2D • ( / ) • Javascript © 2011 Motorola Mobility, Inc.
  • 36. MOTODEV 36 Canvas( ) 2D • . . <canvas id="myc" width="500" height="300"></canvas> <script> function supportsCanvas() { return !!document.createElement('canvas').getContext; } var head = new Image(); head.src="head.jpg”; var myc = document.getElementById("myc"); var cxt = myc.getContext("2d"); head.onload = function () { cxt.drawImage(head, 0, 0); } © 2011 Motorola Mobility, Inc.
  • 37. MOTODEV 37 • . . function supportsLocalStorage() { return ('localStorage' in window) && window['localStorage']!==null; } try { var msg = "localStorage is working OK <br>"; localStorage.setItem("key", msg ); } catch (e) { document.write("Excpn in local storage”); } document.write( localStorage.getItem("key") ); © 2011 Motorola Mobility, Inc.
  • 38. MOTODEV 38 • . . function supportsGeolocation() { return !!navigator.geolocation; } function savePos(pos) { var lat = pos.coords.latitude; var lon = pos.coords.longitude; } try { navigator.geolocation.getCurrentPosition(savePos); } catch (e) { http://www.mozilla.com/en-US/firefox/geolocation/ : © 2011 Motorola Mobility, Inc.
  • 39. MOTODEV 39 © 2011 Motorola Mobility, Inc.
  • 40. MOTODEV 40 : developer.motorola.com • – http://community.developer.motorola.com/ • – MOTODEV Studio: ( , , ) IDE – App Validator: Android • (Twitter) – Appsum11kr • – http://developer.motorola.com/products/xoom/ © 2011 Motorola Mobility, Inc.
  • 41. MOTODEV 41 ? - #appsum11kr community-developer.motorola.com © 2011 Motorola Mobility, Inc.
  • 42. MOTODEV 42 © 2011 Motorola Mobility, Inc.
  • 43. MOTODEV 43 Apache 2 . Copyright © 2010, Android Open Source Project. All rights reserved( ). Apache , 2.0(" "); . : http://www.apache.org/licenses/LICENSE-2.0. “ ” . . © 2011 Motorola Mobility, Inc.
  • 44. MOTODEV 44 BSD . Copyright © 2010-2011, Motorola, Inc. All rights reserved( ). 2 . , . 2 , / . Motorola, Inc. . " " ( ) . , , , , ( , , , ) , ( ) , . © 2011 Motorola Mobility, Inc.
  • 45. MOTODEV 45 © 2011 Motorola Mobility, Inc.