/*** Copyright (c) 2012 CommonsWare, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.commonsware.android.actionmodemc; import android.view.ActionMode; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.widget.AbsListView; import android.widget.ListView; public class HCMultiChoiceModeListener implements AbsListView.MultiChoiceModeListener { ActionModeDemo host; ActionMode activeMode; ListView lv; HCMultiChoiceModeListener(ActionModeDemo host, ListView lv) { this.host=host; this.lv=lv; } @Override public boolean onCreateActionMode(ActionMode mode, Menu menu) { MenuInflater inflater=host.getMenuInflater(); inflater.inflate(R.menu.context, menu); mode.setTitle(R.string.context_title); mode.setSubtitle("(1)"); activeMode=mode; return(true); } @Override public boolean onPrepareActionMode(ActionMode mode, Menu menu) { return(false); } @Override public boolean onActionItemClicked(ActionMode mode, MenuItem item) { boolean result=host.performActions(item); updateSubtitle(activeMode); return(result); } @Override public void onDestroyActionMode(ActionMode mode) { activeMode=null; } @Override public void onItemCheckedStateChanged(ActionMode mode, int position, long id, boolean checked) { updateSubtitle(mode); } private void updateSubtitle(ActionMode mode) { mode.setSubtitle("(" + lv.getCheckedItemCount() + ")"); } }