Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f7110d6 authored by Tony Wickham's avatar Tony Wickham Committed by Android (Google) Code Review
Browse files

Merge "Add FirstScreenWidget plugin interface" into ub-launcher3-master

parents 8d21fd69 6ec45c76
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
package com.android.systemui.plugins;

import android.view.ViewGroup;
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);
}