仅供入门使用, 推荐可读内容如下
==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" />