選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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