I have a collection based widget and I would like to change the initial scroll position.
I've tried following in my RemoteViewsFactory..
views.setScrollPosition(R.id.widgetList, myDesiredPosition);
AppWidgetManager.getInstance(mContext).partiallyUpdateAppWidget(mAppWidgetId, views);
but it unfortunately does not work..I also tried to set that right in my WidgetProvider, did not work though. So, please..is there a way how to change scroll position of a listview wrapped into remoteviews?