Monthly Archives: March 2010

We want your input!

We’re in the final tweaking stages of our speed dial application and we want to get your opinions. This app is a gesture based dialing program which inputs your manual “gesture” to quickly dial (or text) specified contacts from the home screen.

First, which header/footer do you like more? Ignore the “screen” and the size discrepancy and vote only for the header/footer you like the best.

Click on the image for a larger view.

Please select below.

[polldaddy poll=2975976]

Second, which name do you like the best?

[polldaddy poll=2975901]

Thanks for your help! Please check back for information regarding the release of our speed dial application, as well as news on other applications currently under development.

Thanks!

From the Developer’s Kitchen: Widgets

From the Developer’s Kitchen is a segment where we channel thoughts and ideas from our developers as they go about their daily business. Our first post is about implementing widgets in Android. Widgets reside on a home screen on your Android phone and allow instant access to information or functions without having to open a separate app.

Widgets are very memory and resource intensive. This is because they are nothing more than “Remote Views” that display data from an external source (external to the app; could be a database in the phone or weather data from an internet stream). Every time the data updates and/or the view is scheduled to update (the is specified in the app manifest in milliseconds), the entire widget is redrawn on the home screen.

With widgets such as Facebook that have to update frequently to keep up with everyone’s updates, you can easily see how the system gets bogged down and battery life goes to hell. With the current notes widget we are developing, the refresh time is set to 0 milliseconds which means it will never refresh on its own. The refresh in this case is event-driven and only happens in response to an action by the user. The notes themselves will never be edited outside of the app, so there is no need for a regular interval of refreshes to stay up to date.

In future widgets which may draw on external data, we have some great ideas on how we will keep battery usage to a minimum, such as incorporating an activate-on-view feature or allowing users to set intervals.

Because a widget is simply a view, you cannot enter text data into it… well, you can set up a text box to receive user input, but there’s no way to programmatically grab the text and do anything meaningful with it.

The way the Google search and Facebook widgets have gotten around this is to simply make their text boxes shortcuts to a lightweight app that doesn’t fill the whole screen (dialog box)…the process is virtually seamless to the user.

Upcoming Gesture Speed Dial

We’re excited to see some press in the past couple days for Google’s Gesture Search app.

Google Labs

Mashable

Lifehacker

Android and Me

TechCrunch

We’ve been using the Gesture Search for the past day or so and it works extremely well, especially the way you can narrow the search down by adding letters. The backswipe to remove the last letter is also a great, easy-to-use feature. We definitely recommend giving this app a try – especially since its free!

For the past several weeks Simply Applied has been working on a simple, gesture-based speed dial which is easily integrated with the home screen. We will begin beta-testing in the near future and hopefully release a final version shortly after that. Our goal is to make apps and widgets that are simple to use and supplement and improve on the android/user interface. We’d love to hear your suggestions for additional features that you would like to see integrated into our gesture-based speed dialer.