「削除」ボタンを含むカスタム リストビュー アイテムがあります。LazyListAdapter
extendsというカスタム アダプターを作成しましたBaseAdapter
。オーバーライドする getView メソッド内で、このボタンの onclick メソッドを次のように設定します。
@Override
public View getView(final int pos, View convertView, ViewGroup parent) {
View v = convertView;
// Some other things...
ImageButton removeFav = (ImageButton) v.findViewById(R.id.removeFavorites);
removeFav.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// I delete the object from Parse database here,
// Therefore I want the view to disappear here
}
}
このonclickメソッド内のコードを使用して、対応するビューを削除または非表示にするにはどうすればよいですか? または、アプローチを変更する必要がありますか?
よろしくお願いします。