Skip to main content

Posts

Showing posts from February, 2010

WebKit App for Android / iPhone

A quick look: There are two externally loaded JavaScript files: one for the jQuery library and one for helper functions for the application. The use of the viewport metatag to adjust the content's rendering scale. A primary stylesheet is loaded: main.css. The userAgent is interrogated to determine which additional stylesheet to load: one for iPhone, one for Android, and one for Desktop. When the page is loaded, the data is displayed through the help of jQuery and a helper function in the helper.js file. The balance of the page contains a couple of div tags. viewport metatag: <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=yes" />

Android Developer Learning Resource

Developing In Eclipse, with ADT http://developer.android.com/guide/developing/eclipse-adt.html Signing Your Applications http://developer.android.com/guide/publishing/app-signing.html Compile and sign with Eclipse ADT To create a signed and aligned .apk in Eclipse: Select the project in the Package Explorer and select File > Export . Open the Android folder, select Export Android Application, and click Next . The Export Android Application wizard now starts, which will guide you through the process of signing your application, including steps for selecting the private key with which to sign the .apk (or creating a new keystore and private key). Complete the Export Wizard and your application will be compiled , signed , aligned , and ready for distribution. DroidDraw is a graphical user interface (GUI) builder for the Android platform http://code.google.com/p/droiddraw/