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

SingleNoteWidgetService.java « singlenote « 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: 691acae998108d4ce6985f25256d1b9339f631d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
package it.niedermann.owncloud.notes.widget.singlenote;

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

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