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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 649 by torben, Mon Apr 19 12:49:31 2010 UTC revision 771 by torben, Mon May 31 14:14:59 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.side9;  package dk.thoerup.side9;
2    
3  import java.net.URL;  import java.io.File;
4  import java.net.URLConnection;  import java.io.FileOutputStream;
5    import java.io.IOException;
6    
7  import android.app.PendingIntent;  import android.app.PendingIntent;
8  import android.appwidget.AppWidgetManager;  import android.appwidget.AppWidgetManager;
9  import android.appwidget.AppWidgetProvider;  import android.appwidget.AppWidgetProvider;
10    import android.content.ComponentName;
11  import android.content.Context;  import android.content.Context;
12  import android.content.Intent;  import android.content.Intent;
13    import android.content.SharedPreferences;
14  import android.graphics.Bitmap;  import android.graphics.Bitmap;
15  import android.graphics.BitmapFactory;  import android.graphics.BitmapFactory;
16  import android.net.ConnectivityManager;  import android.net.ConnectivityManager;
 import android.net.Uri;  
17  import android.util.Log;  import android.util.Log;
18  import android.widget.RemoteViews;  import android.widget.RemoteViews;
19    import dk.thoerup.androidutils.HttpUtil;
20    
21  public class Side9WidgetProvider extends AppWidgetProvider  {  public class Side9WidgetProvider extends AppWidgetProvider  {
22            
23                    public static final String TAG = "Side9Pigen";
24    
25          //The data needs to be static, since BroadcastReceivers (which WidgetProviders extends) are only valid during onReceive()          //The data needs to be static, since BroadcastReceivers (which WidgetProviders extends) are only valid during onReceive()
26          private static Side9Data usedData;          private static Side9Data usedData;
27            private static Bitmap usedBitmap;
28            private static long timestamp;
29    
30            final static long UDPATESPAN = 3*60*60*1000;
31                    
32            final static String SAVEDIR = "/sdcard/Side9/";
33    
34    
35            static  {
36                    timestamp = 0L;
37            }
38    
39          public Side9WidgetProvider() {          public Side9WidgetProvider() {
40                  Log.i("Side9Pigen", "WidgetProvider constructor called");                  Log.i(TAG, "WidgetProvider constructor called");
41          }          }
42                    
43            private void setImage(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds, Bitmap image) {
44                    // Perform this loop procedure for each App Widget that belongs to this provider
45                    final int N = appWidgetIds.length;
46                    for (int i=0; i<N; i++) {
47                            int appWidgetId = appWidgetIds[i];
48    
49                            RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);
50    
51                            if (image != null) {
52                                    views.setImageViewBitmap(R.id.side9picture, image);
53                            } else {
54                                    views.setImageViewResource(R.id.side9picture, R.drawable.side9logo);
55                            }
56                            //views.setTextViewText(R.id.caption, newData.caption);
57    
58    
59    
60                            
61                            //View single file
62    //                      Intent viewIntent = new Intent(android.content.Intent.ACTION_VIEW);
63            //              viewIntent.setDataAndType(Uri.parse("file:///sdcard/Side9/20100531_400.jpg"), "image/png");
64                            
65                            //view single file
66                            //Intent viewIntent = new Intent(Intent.ACTION_VIEW);
67                            //Uri u = Uri.withAppendedPath(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "1" );
68                            //viewIntent.setData(u);
69                            
70                            //Intent viewIntent = new Intent();
71                            //viewIntent.setClassName("com.android.camera", "com.android.camera.GalleryPicker");
72                            
73    
74                            Intent viewIntent = new Intent();
75                            viewIntent.addCategory(Intent.CATEGORY_LAUNCHER);
76                            viewIntent.setAction(Intent.ACTION_MAIN);
77                            viewIntent.setComponent(new ComponentName("com.android.camera", ".GalleryPicker"));
78                            viewIntent.setFlags(0x10200000);
79    
80                            
81                            
82                            
83                            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                            Log.i(TAG, "done " + appWidgetId);
90                    }      
91            }
92    
93          @Override          @Override
94          public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {          public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
95                  super.onUpdate(context, appWidgetManager, appWidgetIds);                  super.onUpdate(context, appWidgetManager, appWidgetIds);
96                    
97                  final int N = appWidgetIds.length; //                  Log.i(TAG, "onUpdate:");
98                    
99                  Log.e("Side9Pigen", "onUpdate:" + N);                  if (usedBitmap == null) { //load default view
100                                            usedBitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.side9logo);
101                    }
102    
103    
104    
105                  ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);                  ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
106                  if (connMgr.getBackgroundDataSetting() == false)                  if (connMgr.getBackgroundDataSetting() == false)
107                  {                  {
108                          Log.i("Side9Pigen", "background data disabled");                          Log.i(TAG, "background data disabled");
109                          return;                          return;
110                  }                  }
111    
112                    if (System.currentTimeMillis() > (timestamp+UDPATESPAN) ) {
113                            Log.i(TAG, "time elapsed, force XML reload");
114                            usedData = null;
115                    }
116    
117                    try {
118                            Side9Data newData = Side9Xml.loadXml();
119    
120                            if (! newData.equals(usedData)) {
121    
122    
123                                    Log.i(TAG, "(Re)loading image:" + newData.url);
124    
125                                    Bitmap image = getImageData(context, newData);
126    
127                                    usedData = newData; // if we made it to here without exceptions, save the new data
128                                    usedBitmap = image;
129                                    timestamp = System.currentTimeMillis();
130                                    
131    
132                            } // endif
133    
134                    } catch (Exception e) {
135                            Log.e("Side9Pigen", "update failed", e);
136                    }
137    
138                    setImage(context,appWidgetManager,appWidgetIds, usedBitmap);
139                    Log.i("Side9Pigen", "update completed");
140            }
141            
142            Bitmap getImageData(Context context, Side9Data data) throws IOException {      
143                                    
144          try {                  SharedPreferences prefs = context.getSharedPreferences(TAG, Context.MODE_PRIVATE);
145                  Side9Data newData = Side9Xml.loadXml();                  boolean saveImage = prefs.getBoolean("saveimage", false);
146                                    
147                  if (! newData.equals(usedData)) {                  File file = new File( SAVEDIR + data.getFilename() );
148                                            
149                                            if (saveImage == true) {                        
150                          Log.i("Side9Pigen", "(Re)loading image:" + newData.url);                          if (file.exists()) {
151                                                                                    return BitmapFactory.decodeFile(file.getAbsolutePath());
152                          URL imgUrl = new URL( newData.url );                                      }
153                                            }
154                          URLConnection conn = imgUrl.openConnection();                                  
155                          Bitmap image = BitmapFactory.decodeStream( conn.getInputStream() );                  byte imageData[] = HttpUtil.getContent(data.url, 2500);
                           
                           
                           
                         usedData = newData; // if we made it to here without exceptions, save the new data  
                           
156                                    
157                          // Perform this loop procedure for each App Widget that belongs to this provider                  if (saveImage == true) {
158                          for (int i=0; i<N; i++) {                          File savedir = new File(SAVEDIR);
159                              int appWidgetId = appWidgetIds[i];                          savedir.mkdirs();
160                                                                                
161                              RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);                          FileOutputStream fos = new FileOutputStream(file);
162                                                                                fos.write(imageData);
163                              views.setImageViewBitmap(R.id.side9picture, image);                          fos.close();
164                              views.setTextViewText(R.id.caption, newData.caption);                  }
165                                                
166                                                return BitmapFactory.decodeByteArray(imageData, 0, imageData.length);
                             // Launch a browser when user clicks on the image  
                             Intent viewIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(Side9Xml.BASEURL));  
                             viewIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
                             PendingIntent pending = PendingIntent.getActivity(context, 0, viewIntent, Intent.FLAG_ACTIVITY_NEW_TASK);                        
                             views.setOnClickPendingIntent(R.id.side9picture, pending);                        
                               
                             // Tell the AppWidgetManager to perform an update on the current App Widget  
                             appWidgetManager.updateAppWidget(appWidgetId, views);  
                               
                             Log.i("Side9Pigen", "done " + appWidgetId);  
                         }        
                 } //END if (data.equals)  
                   
         } catch (Exception e) {  
                 Log.e("Side9Pigen", "update failed", e);  
         }  
167          }          }
168    
169            
170          //Called when the last widget is removed/disabled          //Called when the last widget is removed/disabled
171          @Override          @Override
172          public void onDisabled(Context context) {          public void onDisabled(Context context) {
173                  super.onDisabled(context);                  super.onDisabled(context);
174                                    Log.i(TAG, "onDisabled");
175    
176                  usedData = null; //free memory                  usedData = null; //free memory
177                    usedBitmap = null;
178          }          }
179    
180  }  }

Legend:
Removed from v.649  
changed lines
  Added in v.771

  ViewVC Help
Powered by ViewVC 1.1.20