Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
BaseAdapter を拡張する ListView Adapter を作成しました。このアダプターでは、ListView 行のボタンをクリックして、行項目をデータソースから削除できます。
今、私は問題を抱えています。ListView の外に TotalAmount があります。行項目が削除された場合、この TotalAmount は変更されません。
アダプターで行アイテムを削除するときに変更するにはどうすればよいですか?
プロバイダーで、exec delete が正常に実行されたら、通知する必要があります
getContext().getContentResolver().notifyChange(Your_URI, null);
TotalAmount にオブザーバーを登録する
getContentResolver().registerContentObserver(uri, bool, observer)