I am trying to change the ActionBar's action depending on wether all list items are visible (there's less items that fit to the screen => show "Add item" action | there are some items invisible => show "Search" action)
What method of ListFragment should I override in order to be able to use getListView().getLastVisiblePosition() and get not -1?
This is the code from my ListFragment, but in onCreateOptionsMenu lv.getLastVisiblePosition() always returns -1.
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
super.onCreateOptionsMenu(menu, inflater);
inflater.inflate(R.menu.list, menu);
final MenuItem search = menu.findItem(R.id.menu_item_search);
final MenuItem add = menu.findItem(R.id.menu_item_add_item);
final ListView lv = getListView();
if (lv.getFirstVisiblePosition() == 0 && lv.getLastVisiblePosition() == mAdapter.getCount()-1) {
// all items visible: show add, hide search
search.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
} else {
// not all items visible: show search, hide add
add.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
}
// ...
}
To get visible child count in
ListView
.Now get total child count in
ListView
,Hide / Show Actionbar Icon.
Hope this will help you.
getLastVisiblePosition
returns valid position only when adapter's items were added and layed out by a hosingListView
, i don't know any method of asking aListView
when it happens, so the best option would be just to listen when the UI thread goes to block waiting for more messages:and call
getLastVisiblePosition()
insideIdleHandler#queueIdle()