Android アプリケーションがあります。から派生したアクティビティの 1 つで、ListActivity
を実装しましたOnItemLongClickListener
。ListItem
LongClickされた関連リストアイテム内の削除ボタンを有効にしたい。これどうやってするの?
OnItemLongClickListener listener = new OnItemLongClickListener(){
public boolean onItemLongClick(AdapterView<?> av, View v, int position, long id) {
Account a = null;
a = (Account) av.getItemAtPosition(position);
Toast.makeText(AccountActivity.this, "Long Clicked : " + a.getAccountName(), Toast.LENGTH_LONG).show();
//instead of the toast, I need to show/enable a button here...
}
};
getListView().setOnItemLongClickListener(listener);