/[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 634 by torben, Wed Mar 24 07:27:34 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;
8  import android.appwidget.AppWidgetManager;  import android.appwidget.AppWidgetManager;
9  import android.appwidget.AppWidgetProvider;  import android.appwidget.AppWidgetProvider;
10  import android.appwidget.AppWidgetProviderInfo;  import android.content.ComponentName;
11  import android.content.Context;  import android.content.Context;
12    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;
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()
26            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          private Side9Data usedData;          final static String SAVEDIR = "/sdcard/Side9/";
33                    
34    
35            static  {
36                    timestamp = 0L;
37            }
38    
39            public Side9WidgetProvider() {
40                    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                    Log.i(TAG, "onUpdate:");
98    
99                    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);
106                    if (connMgr.getBackgroundDataSetting() == false)
107                    {
108                            Log.i(TAG, "background data disabled");
109                            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                  final int N = appWidgetIds.length; //                  SharedPreferences prefs = context.getSharedPreferences(TAG, Context.MODE_PRIVATE);
145                                    boolean saveImage = prefs.getBoolean("saveimage", false);
                 Log.e("onUpdate", "onUpdate:" + N);  
146                                    
147                    File file = new File( SAVEDIR + data.getFilename() );
148                                    
149          try {                  if (saveImage == true) {                        
150                  Side9Data data = Side9Xml.loadXml();                          if (file.exists()) {
151                                                    return BitmapFactory.decodeFile(file.getAbsolutePath());
152                  if (! data.equals(usedData)) {                          }
153                          usedData = data; // save the new data                  }
154                                                                                    
155                          URL imgUrl = new URL( data.url );                                byte imageData[] = HttpUtil.getContent(data.url, 2500);
156                                            
157                          URLConnection conn = imgUrl.openConnection();                  if (saveImage == true) {
158                          Bitmap image = BitmapFactory.decodeStream( conn.getInputStream() );                          File savedir = new File(SAVEDIR);
159                                                    savedir.mkdirs();
160                            
161                            FileOutputStream fos = new FileOutputStream(file);
162                            fos.write(imageData);
163                            fos.close();
164                    }
165                                    
166                          // Perform this loop procedure for each App Widget that belongs to this provider                  return BitmapFactory.decodeByteArray(imageData, 0, imageData.length);
167                          for (int i=0; i<N; i++) {          }
168                              int appWidgetId = appWidgetIds[i];  
169                                                        
170                              RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);          //Called when the last widget is removed/disabled
171                                        @Override
172                                        public void onDisabled(Context context) {
173                              views.setImageViewBitmap(R.id.side9picture, image);                  super.onDisabled(context);
174                                                Log.i(TAG, "onDisabled");
175                                
176                              // Tell the AppWidgetManager to perform an update on the current App Widget                  usedData = null; //free memory
177                              appWidgetManager.updateAppWidget(appWidgetId, views);                  usedBitmap = null;
                         }        
                 } //END if (data.equals)  
                   
         } catch (Exception e) {  
                 Log.e("UPDATE", "UPDATE", e);  
         }  
178          }          }
179    
180  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20