コード例 #1
0
 @Override
 public boolean onContextItemSelected(MenuItem item) {
   AdapterView.AdapterContextMenuInfo info =
       (AdapterView.AdapterContextMenuInfo) item.getMenuInfo();
   ListView accountsList = (ListView) findViewById(R.id.listView);
   AccountLine selectedLine = (AccountLine) accountsList.getAdapter().getItem(info.position);
   accountRepository.remove(selectedLine);
   refreshAccounts();
   return true;
 }