Do not place Android context classes in static fields; this is a memory leak | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Do not place Android context classes in static fields; this is a memory leak

Do not place Android context classes in static fields; this is a memory leak. package com.HSS.raagmala.db; //import android.annotation.SuppressLint; import android.app.Application; import android.content.Context; import android.view.LayoutInflater; public class DBAccess extends Application { public static LayoutInflater inflater; //@SuppressLint("StaticFieldLeak") public static Context context; @Override public void onCreate(){ super.onCreate(); context.getApplicationContext(); inflater= (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); } }

8th May 2022, 4:50 AM
Chinmayi Dongre
Chinmayi Dongre - avatar
0 Answers