systempuntoout
systempuntoout

Reputation: 74094

Android home screen widget documentation

Do you know any books, articles, examples, screencasts that document how to develop an home screen widget on Android?

I just found these links:

I would like to develop a tiny home screen ticker and I'm searching for the proper way to code it.

Upvotes: 3

Views: 15598

Answers (2)

Steve Haley
Steve Haley

Reputation: 55714

There are plenty of examples if you google for "android widget tutorial". Two I found useful were:

  1. HelloWidget from the TheSmilingBlog. Basic tutorial to display an empty box with two buttons.
  2. Creating a Home Screen Widget from developer.com. A more complicated example where it displays an image selected randomly from its collection, with instructions on how to configure the refresh-time as well as buttons on the widget. EDIT: Turns out the buttons on the widget are actually in the sequel to that tutorial, and can be found here.
  3. (I assume you've also read the official tutorial on the Android Developer website)

Upvotes: 7

Related Questions