Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AppWidgetService.java 379B

123456789101112131415
  1. package com.rthoni.stssaguenay.ui.widget;
  2. import android.content.Intent;
  3. import android.widget.RemoteViewsService;
  4. /**
  5. * Created by robin on 12/13/16.
  6. */
  7. public class AppWidgetService extends RemoteViewsService {
  8. @Override
  9. public RemoteViewsFactory onGetViewFactory(Intent intent) {
  10. return new AppWidgetFactory(this.getApplicationContext(), intent);
  11. }
  12. }