增加通知栏快捷磁贴打开在线规则列表功能

This commit is contained in:
2022-03-26 12:41:54 +08:00
parent 857eec5b6a
commit d6f5695711
6 changed files with 69 additions and 1 deletions

View File

@@ -61,5 +61,17 @@
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<service
android:name=".service.QuickStartTileService"
android:exported="true"
android:icon="@drawable/ic_notify_icon"
android:label="@string/tile_name"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
</application>
</manifest>