android Programming Glossary: deserializequotes
Am I creating my custom ArrayAdapter correctly? http://stackoverflow.com/questions/3614934/am-i-creating-my-custom-arrayadapter-correctly something wrong Set things up in OnCreate listView ListView findViewById R.id.ListView registerForContextMenu listView deserializeQuotes if quotes null quotes.size 0 quotes new ArrayList Quote populateDefaultQuotes serializeQuotes getQuotesFromYQL this.quotesAdapter.. new OnItemClickListener @Override public void onItemClick AdapterView a View v int position long id deserializeQuotes Quote myQuote quotes.get position Toast toast Toast.makeText getApplicationContext myQuote.getName Toast.LENGTH_SHORT.. THIS DOESNT WORK DOES NOTHING @Override public boolean onContextItemSelected MenuItem item if item.getTitle Remove deserializeQuotes AdapterContextMenuInfo info AdapterContextMenuInfo item.getMenuInfo quotesAdapter.remove quotes.get info.position quotesAdapter.notifyDataSetChanged..
|