Building "hello world" Android App with HT_Building Android Apps with HTML, CSS, and JavaScript书评-查字典图书网
查字典图书网
当前位置: 查字典 > 图书网 > web > Building Android Apps with HTML, CSS, and JavaScript > Building "hello world" Android App with HT
U_U Building Android Apps with HTML, CSS, and JavaScript 的书评 发表时间:2012-08-07 21:08:55

Building "hello world" Android App with HT

仅供入门使用, 推荐可读内容如下
==Topics==
* Make a web page look greate on the Android web browser(Chapter 1 ~ 3)
* Make your web app look and feel like a native Android app using jQTouch(Chapter 4)
* Use PhoneGap to hook into device features and hardware(Chapter 7)
* Submit App to the Android Market(Chapter 8)

==Chapter 1: Getting Started==
    * Web Apps vs Native Apps

==Chapter 2: Basic Styling==
    * Prepare a Separate Android Stylesheet(Media Queries)
      <link rel="stylesheet" href="android.css" media="only screen and (max-width: 480px)" />
      <link rel="stylesheet" href="desktop.css" media="screen and (min-width: 481px)" />

    * Control the Page Scaling
      Android browser assumes a normal web page is 980px width
      <meta name="viewport" content="user-scalable=no, width=device-width" />
      Desktop browsers will ignore the viewport meta tag

    * Adding the Android Look and Feel
      CSS3(text-shadow, gradient, border-radius)

==Chapter 3: Advanced Styling==
    * Simulating Real-World Network Performance(limit your local network speed)

    * Adding an Icon(launcher icon) to the Home Screen
      <link rel="apple-touch-icon-precomposed" href="icon.png" />

展开全文


推荐文章

猜你喜欢

附近的人在看

推荐阅读

拓展阅读