Attempt to fix ChipDrawable leak

This commit is contained in:
M66B 2024-02-13 18:52:59 +01:00
parent 5c380c1d1b
commit 21a9bc0d91
1 changed files with 6 additions and 0 deletions

View File

@ -1683,6 +1683,12 @@ public class FragmentCompose extends FragmentBase {
@Override
public void onDestroyView() {
adapter = null;
// ChipDrawable context leak
etTo.setText(null);
etCc.setText(null);
etBcc.setText(null);
super.onDestroyView();
}