I have a widget that counts down to an event. When my phone enters in standby (the screen goes black) I get this error: Application TwLauncher (in process com.sec.android.app.twlauncher) is not responding. My widget is the Android version of this one here: http://www.f1widget.com/
This is my timer task that counts down:
private class MyTime extends TimerTask {
RemoteViews remoteViews;
AppWidgetManager appWidgetManager;
ComponentName thisWidget;
java.text.DateFormat format = SimpleDateFormat.getTimeInstance(SimpleDateFormat.MEDIUM,
Locale.getDefault());
public MyTime(Context context, AppWidgetManager appWidgetManager) {
this.appWidgetManager = appWidgetManager;
remoteViews = new RemoteViews(context.getPackageName(), R.layout.main);
thisWidget = new ComponentName(context, F1Widget.class);
}
@Override
public void run() {
days = dF/(3600*24*1000);
dF -= days*3600*24*1000;
hours = dF/(1000*3600);
dF -= hours*1000*3600;
minutes = dF/(1000*60);
dF -= minutes*1000*60;
seconds = dF/1000;
/*
remoteViews.setTextViewText(R.id.widget_textview,
"Time = " +days+" "+hours+" "+minutes+" "+seconds);
appWidgetManager.updateAppWidget(thisWidget, remoteViews);
*/
remoteViews.setTextViewText(R.id.widget_textview,
Html.fromHtml("D: "+"<font color=red><b>"+days+
"</b></font> | H: "+"<font color=red><b>"+hours+
"</b></font> | m: "+"<font color=red><b>"+minutes+
"</b></font> | s: "+"<font color=red><b>"+seconds+"</b></font>"));
remoteViews.setTextViewText(R.id.textView1, titluCursa);
appWidgetManager.updateAppWidget(thisWidget, remoteViews);
dF = dFi - 1000;
dFi -= 1000;
}
}