Added card-like widget

This commit is contained in:
tkashkin 2017-07-19 23:45:56 +03:00
commit e111d4f113
11 changed files with 449 additions and 1 deletions

View file

@ -190,6 +190,18 @@
android:name="android.appwidget.provider"
android:resource="@xml/app_widget_small_info" />
</receiver>
<receiver
android:name=".appwidgets.AppWidgetCard"
android:exported="false"
android:label="@string/app_widget_card_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/app_widget_card_info"/>
</receiver>
</application>