Create a 1x1 home screen widget using static data which launches Sunshine when tapped

This commit is contained in:
Dan Galpin
2015-05-25 04:09:34 -07:00
parent e7357a9631
commit 3ce8bff71c
8 changed files with 191 additions and 0 deletions

View File

@@ -109,6 +109,17 @@
<category android:name="com.example.android.sunshine.app" />
</intent-filter>
</receiver>
<!-- Today Widget -->
<receiver
android:name=".widget.TodayWidgetProvider"
android:label="@string/title_widget_today" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_info_today" />
</receiver>
</application>
</manifest>