mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
Introduces a new app widget for music playback control and display. Adds widget provider classes, update manager, view factory, and related resources (layouts, colors, strings, XML). Integrates widget updates with MediaService to reflect current playback state. Updates AndroidManifest to register the widget.
10 lines
478 B
XML
10 lines
478 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:minWidth="250dp"
|
|
android:minHeight="64dp"
|
|
android:updatePeriodMillis="0"
|
|
android:resizeMode="horizontal|vertical"
|
|
android:initialLayout="@layout/widget_layout_compact"
|
|
android:previewImage="@drawable/ic_splash_logo"
|
|
android:previewLayout="@layout/widget_preview_compact"
|
|
android:widgetCategory="home_screen|keyguard" />
|