I'm writing an Android app (4.2 and above) to return the details of an item from a location on a warehouse shelf. The locations are fixed as an id for each cell of a HTML table. For example, the centre location has id="0,0". The HTML table is called from a WebView and will act as the GUI for the app. As such, I have three questions:
- How can I get the HTML table to dynamically show the item for the corresponding record from the SQLite database?
- How can I show the items on different shelves?
- How would I make the cells selectable so that I can see further information about an item?
After a lot of searching, I've found posts on how to do this in Python, PHP and C, but nothing much in the way of doing it using Java/JavaScript.
As this is my first question, please let me know if you require any additional information. Cheers!