添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
- 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