An open API service indexing awesome lists of open source software.

https://github.com/rhildred/droidfoot2studentproject

Working prototype
https://github.com/rhildred/droidfoot2studentproject

Last synced: about 1 year ago
JSON representation

Working prototype

Awesome Lists containing this project

README

          

# [Droidfoot 2 Student Project](https://github.com/rhildred/Droidfoot2StudentProject)

This was a Partially Working Prototype from an INFO3130 student project at Conestoga. I am using it as an example, because I thought that the students came up with a simple/elegant solution that I preferred to the [nativedroid2 demo on github](http://nd2.godesign.ch/). The Prototype contains list and categories of restaurants with full description of menu, prices, operating times and locations.

The students that worked on this project were:

Anton Nepsha, Thomas Tran, Ahmad Hussain, and Nick Galatsis.

Starting out with the overall design of the code for the site, the students used typical jQuery mobile `data-role=` type markup.

```



Restaurants


  • All Restaurants

  • Categories


```

To make the app have a name and version, the following config.xml is used.

```

Student Prototype


Prototyping example from Conestoga College INFO3130 class



Anton Nepsha, Thomas Tran, Ahmad Hussain, and Nick Galatsis

```

To add an android like toast that shows up when the `deviceready` message comes one could do something like this:

```

var phonegapReady = function(){
new jQuery.nd2Toast({
message:"in phonegap",
ttl: 5000
});
}

document.addEventListener("deviceready", phonegapReady, false);

```

As I mentioned when I started out, I like this better than the [nativedroid2 demo on github](http://nd2.godesign.ch/). It seems more in the jQuery mobile SPA style.