Android Widget: get position in ListView

3.6k Views Asked by At

In a widget, I have a RemoteViews that has a ListView. I want to get the current position that the user is at in the ListView. How would I do that? Is there anything like getFirstVisiblePosition() or getLastVisiblePosition() in RemoteViews? (I haven't seen anything like that so far.) Any ideas?

1

There are 1 best solutions below

1
On

It is pretty easy to get current item of list view.
You can get it in few ways mentioned below:

     listview.getSelectedItem();
     listview.getSelectedItemPosition();
     listview.getSelectedView();
     listview.getSelectedItemId();