/[projects]/android/Side9/src/dk/thoerup/side9/Side9WidgetProvider.java
ViewVC logotype

Annotation of /android/Side9/src/dk/thoerup/side9/Side9WidgetProvider.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 914 - (hide annotations) (download)
Sat Jun 26 09:42:40 2010 UTC (13 years, 11 months ago) by torben
File size: 6077 byte(s)
Force caption visibility if necessary
1 torben 632 package dk.thoerup.side9;
2    
3 torben 771 import java.io.File;
4     import java.io.FileOutputStream;
5     import java.io.IOException;
6 torben 632
7 torben 635 import android.app.PendingIntent;
8 torben 632 import android.appwidget.AppWidgetManager;
9     import android.appwidget.AppWidgetProvider;
10     import android.content.Context;
11 torben 635 import android.content.Intent;
12 torben 771 import android.content.SharedPreferences;
13 torben 632 import android.graphics.Bitmap;
14     import android.graphics.BitmapFactory;
15 torben 636 import android.net.ConnectivityManager;
16 torben 776 import android.net.Uri;
17 torben 775 import android.os.Environment;
18 torben 632 import android.util.Log;
19 torben 854 import android.view.View;
20 torben 632 import android.widget.RemoteViews;
21 torben 771 import dk.thoerup.androidutils.HttpUtil;
22 torben 632
23     public class Side9WidgetProvider extends AppWidgetProvider {
24 torben 703
25 torben 771 public static final String TAG = "Side9Pigen";
26 torben 703
27 torben 635 //The data needs to be static, since BroadcastReceivers (which WidgetProviders extends) are only valid during onReceive()
28     private static Side9Data usedData;
29 torben 689 private static Bitmap usedBitmap;
30 torben 703 private static long timestamp;
31    
32 torben 788 final static long UDPATESPAN = 4*60*60*1000;
33 torben 703
34     static {
35     timestamp = 0L;
36     }
37    
38 torben 649 public Side9WidgetProvider() {
39 torben 771 Log.i(TAG, "WidgetProvider constructor called");
40 torben 649 }
41 torben 778
42     public void resetStatics() {
43     Log.i(TAG, "resetStatics");
44     usedData = null;
45     usedBitmap = null;
46     }
47    
48    
49 torben 703
50 torben 778
51    
52 torben 854 private void setImage(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
53 torben 703 // Perform this loop procedure for each App Widget that belongs to this provider
54 torben 681 final int N = appWidgetIds.length;
55 torben 703 for (int i=0; i<N; i++) {
56     int appWidgetId = appWidgetIds[i];
57    
58     RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);
59    
60 torben 854 if (usedBitmap != null) {
61     views.setImageViewBitmap(R.id.side9picture, usedBitmap);
62 torben 703 } else {
63     views.setImageViewResource(R.id.side9picture, R.drawable.side9logo);
64     }
65 torben 854
66 torben 857 boolean showcaption = context.
67     getSharedPreferences(Side9WidgetProvider.TAG, Context.MODE_PRIVATE).
68     getBoolean(Side9Config.PREFS_SHOWCAPTION, false);
69 torben 854
70     if (showcaption == true) {
71     views.setTextViewText(R.id.caption, " " + usedData.caption + " ");
72 torben 914 views.setViewVisibility(R.id.caption, View.VISIBLE);
73 torben 854 } else {
74     views.setViewVisibility(R.id.caption, View.GONE);
75     }
76 torben 703
77    
78 torben 790 //Intent viewIntent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://www.ekstrabladet.dk/side9/"));
79 torben 771
80 torben 790 Intent viewIntent = new Intent(context, dk.thoerup.side9.PictureOverview.class );
81    
82 torben 771
83 torben 703 PendingIntent pending = PendingIntent.getActivity(context, 0, viewIntent, Intent.FLAG_ACTIVITY_NEW_TASK);
84     views.setOnClickPendingIntent(R.id.side9picture, pending);
85    
86     // Tell the AppWidgetManager to perform an update on the current App Widget
87     appWidgetManager.updateAppWidget(appWidgetId, views);
88    
89 torben 771 Log.i(TAG, "done " + appWidgetId);
90 torben 703 }
91 torben 681 }
92 torben 703
93 torben 632 @Override
94     public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
95     super.onUpdate(context, appWidgetManager, appWidgetIds);
96 torben 703
97 torben 771 Log.i(TAG, "onUpdate:");
98 torben 703
99 torben 689 if (usedBitmap == null) { //load default view
100     usedBitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.side9logo);
101     }
102 torben 703
103    
104    
105 torben 636 ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
106     if (connMgr.getBackgroundDataSetting() == false)
107     {
108 torben 771 Log.i(TAG, "background data disabled");
109 torben 636 return;
110     }
111 torben 703
112     if (System.currentTimeMillis() > (timestamp+UDPATESPAN) ) {
113 torben 771 Log.i(TAG, "time elapsed, force XML reload");
114 torben 703 usedData = null;
115     }
116    
117     try {
118     Side9Data newData = Side9Xml.loadXml();
119    
120     if (! newData.equals(usedData)) {
121    
122    
123 torben 771 Log.i(TAG, "(Re)loading image:" + newData.url);
124 torben 703
125 torben 771 Bitmap image = getImageData(context, newData);
126 torben 703
127     usedData = newData; // if we made it to here without exceptions, save the new data
128     usedBitmap = image;
129     timestamp = System.currentTimeMillis();
130 torben 771
131 torben 703
132     } // endif
133    
134     } catch (Exception e) {
135     Log.e("Side9Pigen", "update failed", e);
136     }
137    
138 torben 854 setImage(context,appWidgetManager,appWidgetIds);
139 torben 703 Log.i("Side9Pigen", "update completed");
140 torben 632 }
141 torben 771
142     Bitmap getImageData(Context context, Side9Data data) throws IOException {
143    
144     SharedPreferences prefs = context.getSharedPreferences(TAG, Context.MODE_PRIVATE);
145 torben 857 boolean saveImage = prefs.getBoolean(Side9Config.PREFS_SAVEIMAGE, false);
146 torben 771
147 torben 788 final String savepath = Environment.getExternalStorageDirectory() + "/Side9";
148 torben 771
149 torben 788 File file = new File( savepath + "/" + data.getFilename() );
150    
151 torben 774 /* if the picture changes later on the day we do NOT want to use an old and invalid image
152     if (saveImage == true) {
153 torben 771 if (file.exists()) {
154     return BitmapFactory.decodeFile(file.getAbsolutePath());
155     }
156 torben 774 }*/
157 torben 775
158 torben 771
159     byte imageData[] = HttpUtil.getContent(data.url, 2500);
160    
161     if (saveImage == true) {
162 torben 775 if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
163 torben 788 File savedir = new File(savepath);
164 torben 775 savedir.mkdirs();
165    
166     if (file.exists()) {
167     file.delete();
168     }
169    
170     FileOutputStream fos = new FileOutputStream(file);
171     fos.write(imageData);
172     fos.close();
173 torben 788
174     Intent rescan = new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory()) );
175     rescan.putExtra("read-only", false);
176     context.sendBroadcast(rescan);
177    
178 torben 776 } else {
179     Log.i(TAG, "sdcard is not mounted");
180 torben 774 }
181 torben 771 }
182    
183 torben 793 Bitmap full = BitmapFactory.decodeByteArray(imageData, 0, imageData.length);
184     Bitmap scaled = Bitmap.createScaledBitmap(full, 400, 577, true);
185     return scaled;
186 torben 771 }
187 torben 632
188 torben 703
189 torben 635 //Called when the last widget is removed/disabled
190     @Override
191     public void onDisabled(Context context) {
192     super.onDisabled(context);
193 torben 771 Log.i(TAG, "onDisabled");
194 torben 778
195     resetStatics();//free memory
196     }
197 torben 703
198 torben 778 @Override
199     public void onEnabled(Context context) {
200     super.onEnabled(context);
201     Log.i(TAG, "onEnabled");
202    
203     resetStatics();//free memory
204 torben 635 }
205 torben 778
206 torben 632 }

  ViewVC Help
Powered by ViewVC 1.1.20