In my Widget app i update the onscreen layout using a remote view, since i would also like to create a preview of that result under main configuration activity i've tried to use Remote Views also there to save me from rewriting some code, what i want to do is something like:
// "vg" is an inflated R.layout.widget viewgroup
RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.widget);
rv.setTextViewText(R.id.widget_text, "foo");
rv.apply(context, vg);
However the "apply" function doesn't seem to update anything on ViewGroup, no error is returned. Any idea?