Feb08
Voice Search on Android
Android now has voice search with the latest update. While trying to search for "couchdb", it detected the following:
- tennis tv
- change db
- philips dvd
It worked well for non-technical terms, however.
by Zach Carter
Feb08
Android now has voice search with the latest update. While trying to search for "couchdb", it detected the following:
- tennis tv
- change db
- philips dvd
It worked well for non-technical terms, however.
Jan22
These are some of my favorite Android applications that I actually use on a day to day basis. Some of them are useful, most of them are not, per se. I suppose social engagement can be useful.
Besides all of the built in apps, here's my list in the order memory serves me:
"Signs point to yes"A somewhat immature list, yes. The iFart phenomena is revealed. Like I said, these phones exists, for most people, to entertain.
I have to give a shout out to these special ones:
There are some other good applications, of course, that I haven't had time to play with yet. I've listed no real games either, for that matter. But the Android Market is thriving from what I can see.
Jan09
Mobile Webkit recognizes some useful CSS media queries, which I'm using to include a special mobile stylesheet on my page:
<link href="/style/mobile.css" rel="stylesheet" media="only screen and (max-device-width: 480px)" type="text/css" />
The key here being the media attribute value of only screen and (max-device-width: 480px). The mobile stylesheet contains just a few rules to make things more readable and space efficient for small screens, like reduced padding, etc.
The Android SDK contains an Android emulator which I use to test the page in a browser (Safari should look about identical to Android's browser.)
The media queries work well for including tweaks, but if you're hiding a bunch of extra content for mobile, you'd be better off serving a special mobile version of the page without the extra content to save bandwidth.