Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I made a little widget with a button and a text view. The button is a on/off switch and the text should be show the current state: off / on

For some reason, the widget not refreshing the TextView. Please check my code:

The Service:

public class TrackingWidgetService extends Service {

public static final String UPDATESTATE = "UpdateState";
private String CURRENTSTATE;

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    super.onStart(intent, startId);
    updateState(intent);
    stopSelf(startId);

    return START_STICKY;
}


private void updateState(Intent intent) {

    if (intent != null) {
        String requestedAction = intent.getAction();

        if (requestedAction != null && requestedAction.equals(UPDATESTATE)) {
            this.CURRENTSTATE = "ON";

            if (Variables.isTurnedOn) {
                CURRENTSTATE = "OFF";
                Variables.isTurnedOn=false;
            } else {
                CURRENTSTATE = "ON";
                Variables.isTurnedOn = true;
            }

            Log.i("Widget", "Current state: "+CURRENTSTATE);

            int widgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, 0);

            AppWidgetManager appWidgetMan = AppWidgetManager.getInstance(this);
            RemoteViews views = new RemoteViews(this.getPackageName(), R.layout.widgetlayout);


            views.setTextViewText(R.id.widgetStateText, CURRENTSTATE);
            appWidgetMan.updateAppWidget(widgetId, views);
        }
    }
}

@Override
public IBinder onBind(Intent intent) {
    return null;
}

}

And the AppWidgetProvider:

public class TrackingWidgetProvider extends AppWidgetProvider {

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    super.onUpdate(context, appWidgetManager, appWidgetIds);

    final int N = appWidgetIds.length;

    for (int i=0; i<N; i++) {
        int appWidgetId = appWidgetIds[i];

        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widgetlayout);

        Intent intent = new Intent(context, TrackingWidgetService.class);
        intent.setAction(TrackingWidgetService.UPDATESTATE);
        intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
        PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, 0);

        views.setOnClickPendingIntent(R.id.widgetBtn, pendingIntent);
        appWidgetManager.updateAppWidget(appWidgetId, views);
    }
}   
}
share|improve this question
Try refresh from another thread. – Haris Dautović Jan 30 at 16:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.