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

  ViewVC Help
Powered by ViewVC 1.1.20