mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Add widgets to android port.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29170 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e9749d1b93
commit
c0c769c5a8
37 changed files with 771 additions and 5 deletions
|
|
@ -29,6 +29,37 @@
|
|||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<!-- Widgets -->
|
||||
<receiver android:name=".widgets.RockboxWidgetProvider4x1"
|
||||
android:label="@string/appwidget_label_4x1">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
<action android:name="org.rockbox.TrackUpdateInfo" />
|
||||
<action android:name="org.rockbox.TrackFinish" />
|
||||
<action android:name="org.rockbox.UpdateState" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.appwidget.provider"
|
||||
android:resource="@xml/appwidget_provider_4x1" />
|
||||
</receiver>
|
||||
|
||||
<receiver android:name=".widgets.RockboxWidgetProvider2x2"
|
||||
android:label="@string/appwidget_label_2x2">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
<action android:name="org.rockbox.TrackUpdateInfo" />
|
||||
<action android:name="org.rockbox.TrackFinish" />
|
||||
<action android:name="org.rockbox.UpdateState" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.appwidget.provider"
|
||||
android:resource="@xml/appwidget_provider_2x2" />
|
||||
</receiver>
|
||||
|
||||
<!-- Widget configuration -->
|
||||
<activity android:name=".widgets.RockboxWidgetConfigure">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue