Posted by Hanly on May 20, 2010 in Blog, Code | 1 comment
I was trying to add some sample Verilog code on my website, but the code syntax highlighter I use did not have a brush. I made my own Verilog brush for Alex Gorbatchev’s SyntaxHighlighter. Feel free to modify and improve the code. The only thing that I ask is that you share the modifications.
...
read more
Posted by Hanly on Jan 7, 2010 in Blog, Featured, Tutorials | 28 comments
This tutorial will demonstrate how to use the database adapter created in “Creating a SQLite Database in Android” to add and get data to and from the database to populate a ListView.
...
read more
Posted by Hanly on Dec 24, 2009 in Blog, Tutorials | 8 comments
There are several ways to send data across the internet to a server on the Android. I was recently working on a project and needed to send a JSON string to the server to add data to a database. Additionally in certain cases I wanted to receive data back from the server. The fastest and easiest way to do this was to use HTTP POST android library and capture the response from the server using a...
read more
Posted by Hanly on Dec 23, 2009 in Blog, Featured, Tutorials | 23 comments
This example will show you how to create a somewhat abstracted SQLite adapter on Android. This adapter can then be utilized by your program to do common database functions such as, querying and searching. I start by creating the class DBAdapter in my Android project and declaring the variable data necessary to create the database.
EDIT: The code has been modified since it originally assumed that...
read more
Posted by Hanly on Oct 10, 2009 in Blog, Computer Engineering, Computer Science, Sample Work | 7 comments
A week ago, for my mobile device programming class, I had to add text-to-speech and speech-to-text capabilities to a freely available Android program called Twitta. The features I added were very crudely superimposed on the Twitta interface, therefore this edit is by no means polished or intended for production usage.
There are 3 button “S”, “X”, and “R”....
read more