Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }