Files
UIUIPad-Launcher3-Q/src_plugins/com/uiuipad/systemui/plugins/FirstScreenWidget.java
Fanhuitong 8799e85443 version:
fix:
update:更换为酷信
2023-10-11 19:19:52 +08:00

18 lines
582 B
Java

package com.uiuipad.systemui.plugins;
import android.view.ViewGroup;
import com.android.systemui.plugins.Plugin;
import com.android.systemui.plugins.annotations.ProvidesInterface;
/**
* Implement this interface to wrap the widget on the first home screen, e.g. to add new content.
*/
@ProvidesInterface(action = FirstScreenWidget.ACTION, version = FirstScreenWidget.VERSION)
public interface FirstScreenWidget extends Plugin {
String ACTION = "com.android.systemui.action.PLUGIN_FIRST_SCREEN_WIDGET";
int VERSION = 1;
void onWidgetUpdated(ViewGroup widgetView);
}