添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
旅途中的鼠标垫  ·  7125messi的博客·  3 天前    · 
憨厚的大脸猫  ·  python ...·  2 天前    · 
霸气的花卷  ·  python list 错位相减 ...·  2 天前    · 
帅气的领带  ·  【Pyspark ...·  22 小时前    · 
乖乖的生姜  ·  IPTC and EXIF data ...·  2 月前    · 
冲动的楼梯  ·  spring springboot ...·  5 月前    · 
- 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); }

android memory leak context
8th May 2022, 4:50 AM
Chinmayi Dongre
Chinmayi Dongre - avatar
0 Answer