Add files via upload

This commit is contained in:
ReinerRego
2023-05-26 21:50:08 +02:00
committed by GitHub
parent 258a6ab8d3
commit baec76c29f
39 changed files with 5892 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package hu.filc.naplo.widget_timetable;
import android.content.Intent;
import android.os.Build;
import android.widget.RemoteViewsService;
public class WidgetTimetableService extends RemoteViewsService {
@Override
public RemoteViewsFactory onGetViewFactory(Intent intent) {
return new WidgetTimetableDataProvider(getApplicationContext(), intent);
}
}