FirstScreenWidget.java 537 B

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