aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/ui/ExportLogsPreference.java
blob: a4e178bd3e190e37a30e0edbbf2bbbb08b30ba23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package eu.siacs.conversations.ui;

import android.content.Context;
import android.content.Intent;
import android.preference.Preference;
import android.util.AttributeSet;

import eu.siacs.conversations.services.ExportLogsService;

public class ExportLogsPreference extends Preference {

    public ExportLogsPreference(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    public ExportLogsPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ExportLogsPreference(Context context) {
        super(context);
    }

    protected void onClick() {
		final Intent startIntent = new Intent(getContext(), ExportLogsService.class);
		getContext().startService(startIntent);
		super.onClick();
    }
}