回答編集履歴
1
引用文の追加
test
CHANGED
@@ -5,3 +5,7 @@
|
|
5
5
|
間接的にViewの参照を保持してしまっているよくありがちなパターンとしては、DataBindingのインスタンスをFragmentのメンバ変数として保持する実装があります。これについては公式ドキュメントでもonDestryoViewにてきちんと解放してくださいと但し書きがあります。
|
6
6
|
|
7
7
|
[https://developer.android.com/topic/libraries/view-binding#fragments](https://developer.android.com/topic/libraries/view-binding#fragments)
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
> Note: Fragments outlive their views. Make sure you clean up any references to the binding class instance in the fragment's onDestroyView() method.
|