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

DownloadImagesActivity.java « owncloudnewsreader « luhmer « de « java « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85e9863279c64296383816fc526b7baa3359f599 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package de.luhmer.owncloudnewsreader;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;

import de.luhmer.owncloudnewsreader.reader.owncloud.AsyncTask_GetItems;

/**
 * Created by david on 14.10.13.
 */
public class DownloadImagesActivity extends Activity {
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        final long highestItemIdBeforeSync = getIntent().getLongExtra("highestItemIdBeforeSync", 0);

        AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);

        // set title
        alertDialogBuilder.setTitle(getString(R.string.no_wifi_available));

        // set dialog message
        alertDialogBuilder
                .setMessage(getString(R.string.do_you_want_to_download_without_wifi))
                .setCancelable(true)
                .setPositiveButton(getString(android.R.string.yes) ,new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog,int id) {
                        AsyncTask_GetItems.StartDownloadingImages(DownloadImagesActivity.this, highestItemIdBeforeSync, false);
                        DownloadImagesActivity.this.finish();
                    }
                })
                .setNegativeButton(getString(android.R.string.no), new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        DownloadImagesActivity.this.finish();
                    }
                });

        AlertDialog alertDialog = alertDialogBuilder.create();

        alertDialog.show();
    }
}