14
Android Home Screen Widgets London Android User Group 22 nd June 2009 Richard Hyndman

Londroid Android Home Screen Widgets

Embed Size (px)

Citation preview

Page 1: Londroid Android Home Screen Widgets

Android Home Screen Widgets

London Android User Group

22nd June 2009

Richard Hyndman

Page 2: Londroid Android Home Screen Widgets

Widgets

Page 3: Londroid Android Home Screen Widgets

BatteryWidget

If you want to follow along I’ll be using

BatteryWidget as an example:

http://batterywidget.googlecode.comOr

http://geekyouup.com/batterywidget.zip

Page 4: Londroid Android Home Screen Widgets

How?

• To create an App Widget, you need 3 things:

– AppWidgetProviderInfo xml• Describes the metadata for an App Widget, such as layout,

update frequency, and the AppWidgetProvider class. Defined in XML.

– AppWidgetProvider class implementation• Defines the basic methods that allow you to

programmatically interface with the App Widget, based on broadcast events. Through it, you will receive broadcasts when the App Widget is updated, enabled, disabled and deleted.

– View layout xml• Defines the initial layout for the App Widget, defined in XML.

Page 5: Londroid Android Home Screen Widgets

The AppWidgetProvider

This tells Android O/S that your application includes a Widget and wants updates, also that the widget is defined in the file xml/widget_def.xml

Declare the AppWidgetProvider class in your application's AndroidManifest.xml file.

Page 6: Londroid Android Home Screen Widgets

AppWidgetProviderInfo

XML file that defines the widget size and update frequency– BatteryWidget/res/xml/widget_def.xml

• To calculate sizes: Minimum size in dip = (Number of cells * 74dip) - 2dip

• initalLayout: The layout resource xml that is used when the widget loads

• Don’t update more than necessary, battery life issues

• At the update interval, your AppWidgetProvider.onUpdate() method is called

Page 7: Londroid Android Home Screen Widgets

What is a DIP?

• Android documentation mentions dip’s or dp’s instead of pixels for layout, but what it is a DIP?

• One DIP is one pixel on a 160 dpi screen– (for example a 240x320, 1.5"x2" screen is approx 1dip=1px)

• On a 106 dpi screen the density is 0.75;– 1dip = 1.333px

Page 8: Londroid Android Home Screen Widgets

AppWidgetProvider Class

BatteryWidget/src/com.geekyouup.android.widgets.battery.BatteryWidget

Problem: When your Widgets AppWidgetProvider.onUpdate(..) method is called the response is subject to the ANR (Application Not Responding) timer. If your time runs out then the user gets the “Force Close or Wait” dialog, this is not good.

Solution: If you need some time, start a service to process your update. It is much easier than you may think. A service just needs an onStart() method. (see BatteryWidget.java UpdateService inner class)

Page 9: Londroid Android Home Screen Widgets

RemoteViews

Problem: If Widget views aren’t dynamic and have no associated Activity, how can you update them? How can the BatteryWidget’s percentage change?

Solution: RemoteViews!

When an event triggers an update, you can attach to the Widget’s view remotely and update it using the RemoteViews methods

Page 10: Londroid Android Home Screen Widgets

Widget Interactions

Problem: If the Widget has no associated Activity, how can you make it interactive?

Solution: PendingIntents!

When using RemoteViews to update the widget layout, you can set PendingIntents on elements. For example using setOnClickPendingIntent() on the BatteryWidget starts an Activity

Touch

Page 11: Londroid Android Home Screen Widgets

BatteryWidget Events

For the sake of efficiency and good coding practise the BatteryWidget does not poll the battery state. It registers as a Receiver for the Intent: Intent.ACTION_BATTERY_CHANGED

This intent can only be registered for in code, not as usual in the AndroidManifest.xml

When the intent fires in BatteryInfo.java it includes extra data:intent.getIntExtra("level", 0)intent.getIntExtra("status“)

which describe the current charge and charging states

Page 12: Londroid Android Home Screen Widgets

Display / GPS / Wifi

• Display SettingsIntent defineIntent2 = new Intent("com.android.settings.DISPLAY_SETTINGS");

defineIntent2.addCategory("android.intent.category.DEFAULT");

startActivity(defineIntent2);

• GPS Settings, how to do it properly?Intent defineIntent2 = new Intent("android.settings.LOCATION_SOURCE_SETTINGS");defineIntent2.addCategory("android.intent.category.DEFAULT");startActivity(defineIntent2);

• Wireless SettingsWifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);boolean enabled = wifiManager.isWifiEnabled();wifiManager.setWifiEnabled(!enabled );

Page 13: Londroid Android Home Screen Widgets

ImageView Touch Feedback

Problem: It is important to provide feedback to the user when a button is pressed, but on a widget that can be tricky as the view isn’t dynamic.

Solution: Selector <selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_pressed="true" android:drawable="@drawable/edit_sel" />

<item android:drawable="@drawable/edit" />

</selector>

When an image changes state to pressed, the appropriate image will be shown, given the impression of tactile feedback

Page 14: Londroid Android Home Screen Widgets

Links

• Battery Widget Source Code– http://batterywidget.googlecode.com

• Jeff Sharkey’s Blog Post, ‘Introducing Home Screen Widgets’ includes full source code

– http://android-developers.blogspot.com/2009/04/introducing-home-screen-widgets-and.html

• Jeff Sharkey’s Weather Forecast Widget– http://jsharkey.org/blog/2009/04/24/forecast-widget-for-android-15-with-source/

• Android Developer Guide - AppWidgets– http://developer.android.com/guide/topics/appwidgets/index.html