Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NoteListWidgetService.java « notelist « widget « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 873cd24162a66d8189d5f58dc118dcbb43cea85d (plain)
1
2
3
4
5
6
7
8
9
10
11
package it.niedermann.owncloud.notes.widget.notelist;

import android.content.Intent;
import android.widget.RemoteViewsService;

public class NoteListWidgetService extends RemoteViewsService {
    @Override
    public RemoteViewsFactory onGetViewFactory(Intent intent) {
        return new NoteListWidgetFactory(this.getApplicationContext(), intent);
    }
}