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.
問題:私はやっています
registerForContextMenu(list);
そして、すべてが良いです。
問題 : contextMenu が閉じられたときにアクションをトリガーしたい。ユーザーが contextMenu を閉じた場合、どのようにリスナーを設定できますか?
ありがとう。
メソッドをオーバーライドできます。
@Override public void onContextMenuClosed(Menu menu) { super.onContextMenuClosed(menu); }
そして、あなたがしたいことは何でもしてください:)
頑張れアルクデ