/[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 926 by torben, Sun Jun 27 10:41:10 2010 UTC revision 927 by torben, Sun Jun 27 15:48:24 2010 UTC
# Line 27  public class Side9WidgetProvider extends Line 27  public class Side9WidgetProvider extends
27          public static final String TAG = "Side9Pigen";          public static final String TAG = "Side9Pigen";
28    
29          //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()
30          private static Side9Data usedData;          private static Side9Data mUsedData;
31          private static Bitmap usedBitmap;          private static Bitmap mUsedBitmap;
32          private static long timestamp;          private static long mTimestamp;
33          private static boolean reloadData;          private static boolean mReloadData;
34    
35          final static long UDPATESPAN = 4*60*60*1000;          final static long UDPATESPAN = 4*60*60*1000;
36    
37          static  {          static  {
38                  timestamp = 0L;                  mTimestamp = 0L;
39          }          }
40    
41          public Side9WidgetProvider() {          public Side9WidgetProvider() {
# Line 44  public class Side9WidgetProvider extends Line 44  public class Side9WidgetProvider extends
44                    
45          public void resetStatics() {          public void resetStatics() {
46                  Log.i(TAG, "resetStatics");                  Log.i(TAG, "resetStatics");
47                  usedData = null;                  mUsedData = null;
48                  usedBitmap = null;                                mUsedBitmap = null;            
49          }          }
50                    
51                    
# Line 60  public class Side9WidgetProvider extends Line 60  public class Side9WidgetProvider extends
60    
61                          RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);                          RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);
62    
63                          if (usedBitmap != null) {                          if (mUsedBitmap != null) {
64                                  views.setImageViewBitmap(R.id.side9picture, usedBitmap);                                  views.setImageViewBitmap(R.id.side9picture, mUsedBitmap);
65                          } else {                          } else {
66                                  views.setImageViewResource(R.id.side9picture, R.drawable.side9logo);                                  views.setImageViewResource(R.id.side9picture, R.drawable.side9logo);
67                          }                          }
# Line 70  public class Side9WidgetProvider extends Line 70  public class Side9WidgetProvider extends
70                                          getSharedPreferences(Side9WidgetProvider.TAG, Context.MODE_PRIVATE).                                          getSharedPreferences(Side9WidgetProvider.TAG, Context.MODE_PRIVATE).
71                                          getBoolean(Side9Config.PREFS_SHOWCAPTION, false);                                          getBoolean(Side9Config.PREFS_SHOWCAPTION, false);
72                                                    
73                          if (showcaption == true && usedData != null) {                          if (showcaption == true && mUsedData != null) {
74                                  views.setTextViewText(R.id.caption, " " + usedData.caption + " ");                                  views.setTextViewText(R.id.caption, " " + mUsedData.caption + " ");
75                                  views.setViewVisibility(R.id.caption, View.VISIBLE);                                  views.setViewVisibility(R.id.caption, View.VISIBLE);
76                          } else {                          } else {
77                                  views.setViewVisibility(R.id.caption, View.GONE);                                  views.setViewVisibility(R.id.caption, View.GONE);
# Line 99  public class Side9WidgetProvider extends Line 99  public class Side9WidgetProvider extends
99    
100                  Log.i(TAG, "onUpdate:");                  Log.i(TAG, "onUpdate:");
101    
102                  if (usedBitmap == null) { //load default view                  if (mUsedBitmap == null) { //load default view
103                          usedBitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.side9logo);                          mUsedBitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.side9logo);
104                  }                  }
105    
106    
# Line 114  public class Side9WidgetProvider extends Line 114  public class Side9WidgetProvider extends
114    
115                  //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                  //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                  //daily picture, and this is a (crude) way to ensure we have the latest data
117                  if (System.currentTimeMillis() > (timestamp+UDPATESPAN) ) {                  if (System.currentTimeMillis() > (mTimestamp+UDPATESPAN) ) {
118                          Log.i(TAG, "time elapsed, force XML reload");                          Log.i(TAG, "time elapsed, force XML reload");
119                          reloadData = true;                          mReloadData = true;
120                  }                  }
121    
122                  try {                  try {
123                          Side9Data newData = Side9Xml.loadXml();                          Side9Data newData = Side9Xml.loadXml();
124    
125                          if (! newData.equals(usedData) || reloadData == true) {                          if (! newData.equals(mUsedData) || mReloadData == true) {
126    
127    
128                                  Log.i(TAG, "(Re)loading image:" + newData.url);                                  Log.i(TAG, "(Re)loading image:" + newData.url);
129    
130                                  Bitmap image = getImageData(context, newData);                                  Bitmap image = getImageData(context, newData);
131    
132                                  usedData = newData; // if we made it to here without exceptions, save the new data                                  mUsedData = newData; // if we made it to here without exceptions, save the new data
133                                  usedBitmap = image;                                  mUsedBitmap = image;
134                                  timestamp = System.currentTimeMillis();                                  mTimestamp = System.currentTimeMillis();
135                                  reloadData = false;                                  mReloadData = false;
136    
137                          } // endif                          } // endif
138    

Legend:
Removed from v.926  
changed lines
  Added in v.927

  ViewVC Help
Powered by ViewVC 1.1.20