Make multiselect buttons update when the list state changes

This commit is contained in:
Mike Cleron 2009-10-09 13:15:40 -07:00
parent 4b59cfc8ed
commit 479b22a2f8

View File

@ -1215,6 +1215,9 @@ public class MessageList extends ListActivity implements OnItemClickListener, On
break; break;
case MSG_REQUERY_LIST: case MSG_REQUERY_LIST:
mListAdapter.doRequery(); mListAdapter.doRequery();
if (mMultiSelectPanel.getVisibility() == View.VISIBLE) {
updateFooterButtonNames();
}
break; break;
default: default:
super.handleMessage(msg); super.handleMessage(msg);